Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 7 Jan 2008 07:37:43 GMT
From:      Peter Wemm <peter@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 132684 for review
Message-ID:  <200801070737.m077bhEC030039@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=132684

Change 132684 by peter@peter_overcee on 2008/01/07 07:37:36

	HACK! HACK!  Teach cvs-1.11 about 1.12-style keyword config controls.

Affected files ...

.. //depot/projects/hammer/contrib/cvs/src/parseinfo.c#6 edit

Differences ...

==== //depot/projects/hammer/contrib/cvs/src/parseinfo.c#6 (text+ko) ====

@@ -429,6 +429,16 @@
 	    else if (strcmp (p, "stat") == 0)
 	      RereadLogAfterVerify = LOGMSG_REREAD_STAT;
 	}
+	else if (strcmp(line, "LocalKeyword") == 0)
+	{
+	    /* Recognize cvs-1.12-style keyword control rather than erroring out. */
+	    RCS_setlocalid(p);
+	}
+	else if (strcmp(line, "KeywordExpand") == 0)
+	{
+	    /* Recognize cvs-1.12-style keyword control rather than erroring out. */
+	    RCS_setincexc(p);
+	}
 	else
 	{
 	    /* We may be dealing with a keyword which was added in a



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200801070737.m077bhEC030039>