From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.help Subject: Re: Starting a new cvs repo in VC Date: Thu, 03 Mar 2011 01:10:00 -0500 Message-ID: References: <87d3m94zla.fsf@gmail.com> <87tyfl2mvz.fsf@gmail.com> NNTP-Posting-Host: lo.gmane.org X-Trace: dough.gmane.org 1299132652 7716 80.91.229.12 (3 Mar 2011 06:10:52 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Thu, 3 Mar 2011 06:10:52 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Mar 03 07:10:46 2011 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1Pv1kK-0002ts-Pn for geh-help-gnu-emacs@m.gmane.org; Thu, 03 Mar 2011 07:10:44 +0100 Original-Received: from localhost ([127.0.0.1]:36406 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pv1kJ-0003EJ-On for geh-help-gnu-emacs@m.gmane.org; Thu, 03 Mar 2011 01:10:43 -0500 Original-Received: from [140.186.70.92] (port=49531 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Pv1jd-0003E2-Qr for help-gnu-emacs@gnu.org; Thu, 03 Mar 2011 01:10:03 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Pv1jc-0006DE-JI for help-gnu-emacs@gnu.org; Thu, 03 Mar 2011 01:10:01 -0500 Original-Received: from fencepost.gnu.org ([140.186.70.10]:53963) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Pv1jc-0006DA-Hb for help-gnu-emacs@gnu.org; Thu, 03 Mar 2011 01:10:00 -0500 Original-Received: from eliz by fencepost.gnu.org with local (Exim 4.71) (envelope-from ) id 1Pv1jc-0005FZ-AV for help-gnu-emacs@gnu.org; Thu, 03 Mar 2011 01:10:00 -0500 In-reply-to: <87tyfl2mvz.fsf@gmail.com> (message from Evans Winner on Wed, 02 Mar 2011 15:11:44 -0700) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 140.186.70.10 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:79730 Archived-At: > From: Evans Winner > Newsgroups: gnu.emacs.help > Date: Wed, 02 Mar 2011 15:11:44 -0700 > > It does seem odd, though, that, starting from a directory that is > not under any version control, C-x v v in a file does offer to > create a new... something... using RCS, or SCCS, Bzr, Git, etc., but > not CVS. This happens because there's no create-repo method implemented for the CVS backend: (vc-find-backend-function 'CVS 'create-repo) => nil When that happens, Emacs cannot DWYM when you type "C-x v v" for an unregistered file. So it only offers you backends which do have a create-repo method implemented. Feel free to report that as a bug, at least in the documentation.