PERFORCE change 132684 for review

Peter Wemm peter at FreeBSD.org
Sun Jan 6 23:37:44 PST 2008


http://perforce.freebsd.org/chv.cgi?CH=132684

Change 132684 by peter at 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


More information about the p4-projects mailing list