From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Andre Spiegel Newsgroups: gmane.emacs.devel Subject: Re: RCS keyword removal Date: Tue, 13 Apr 2004 11:29:53 +0200 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: <1081848593.770.160.camel@localhost> References: <20040410060006.GA24729@fencepost> <1081696710.770.115.camel@localhost> <20040411155130.GA30439@fencepost> <1081703812.770.131.camel@localhost> <1081761295.770.151.camel@localhost> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1081848778 3777 80.91.224.253 (13 Apr 2004 09:32:58 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 13 Apr 2004 09:32:58 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Tue Apr 13 11:32:50 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BDKHi-0006D4-00 for ; Tue, 13 Apr 2004 11:32:50 +0200 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1BDKHh-0005vt-00 for ; Tue, 13 Apr 2004 11:32:49 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.30) id 1BDKG5-00011o-Vj for emacs-devel@quimby.gnus.org; Tue, 13 Apr 2004 05:31:09 -0400 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.30) id 1BDKG1-000111-4x for emacs-devel@gnu.org; Tue, 13 Apr 2004 05:31:05 -0400 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.30) id 1BDKFV-0000mG-6D for emacs-devel@gnu.org; Tue, 13 Apr 2004 05:31:04 -0400 Original-Received: from [193.113.160.14] (helo=mail.o2.co.uk) by monty-python.gnu.org with esmtp (Exim 4.30) id 1BDKEy-0000bq-Ok; Tue, 13 Apr 2004 05:30:00 -0400 Original-Received: from [217.231.187.9] (217.231.187.9) by mail.o2.co.uk (7.0.020) (authenticated as andre.spiegel@o2online.de) id 406D36E900357D84; Tue, 13 Apr 2004 10:29:00 +0100 Original-To: Miles Bader In-Reply-To: X-Mailer: Ximian Evolution 1.4.5 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:21556 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:21556 On Tue, 2004-04-13 at 11:10, Miles Bader wrote: > Ok, I tried this ... and it didn't work. I did: > > CVSROOT=... cvs co -kb -d test-emacs emacs > > and files containing RCS keywords within `test-emacs' still had expanded > keyword values -- though the expansions were different than the `normal' > expanded values (they were slightly out of date, and seemed to contain > info for the revision just prior to the last one). I think you need to use "cvs co -kk ...". That explicitly resets the keywords to their unexpanded form. It seems that -kb reverts to whatever form the keyword happens to have in the RCS master file, which is bogus because it is rewritten upon checkout anyway. So, -kk ought to be the right option. (-kb makes sense for binary files, because if a file happens to contain something that looks like an expanded RCS keyword, you wouldn't want that to be reset.)