Module Name: src
Committed By: christos
Date: Tue Apr 21 17:27:50 UTC 2009
Modified Files:
src/external/gpl2/xcvs/dist/src: rcs.c
Log Message:
Fix LOCALID expansion (from Anon Ymous)
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/gpl2/xcvs/dist/src/rcs.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/gpl2/xcvs/dist/src/rcs.c
diff -u src/external/gpl2/xcvs/dist/src/rcs.c:1.2 src/external/gpl2/xcvs/dist/src/rcs.c:1.3
--- src/external/gpl2/xcvs/dist/src/rcs.c:1.2 Wed Apr 8 12:27:51 2009
+++ src/external/gpl2/xcvs/dist/src/rcs.c Tue Apr 21 13:27:50 2009
@@ -3511,6 +3511,11 @@
KEYWORD_INIT (new, KEYWORD_REVISION, "Revision");
KEYWORD_INIT (new, KEYWORD_SOURCE, "Source");
KEYWORD_INIT (new, KEYWORD_STATE, "State");
+ KEYWORD_INIT (new, KEYWORD_STATE, "State");
+ new[KEYWORD_LOCALID].string = NULL;
+ new[KEYWORD_LOCALID].len = 0;
+ new[KEYWORD_LOCALID].expandto = KEYWORD_LOCALID;
+ new[KEYWORD_LOCALID].expandit = false;
return new;
}