summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin
diff options
context:
space:
mode:
authorrgrimes <rgrimes@FreeBSD.org>1994-06-22 00:51:42 +0000
committerrgrimes <rgrimes@FreeBSD.org>1994-06-22 00:51:42 +0000
commit743b541787475dbe9e72ec9c70f4a6bfc373f28a (patch)
tree387789d171ede51ec1f97f304ad76c2d62f234c7 /gnu/usr.bin
parent3380f636bdb39a4ce5fb4ebede52176a65ceb1b3 (diff)
downloadFreeBSD-src-743b541787475dbe9e72ec9c70f4a6bfc373f28a.zip
FreeBSD-src-743b541787475dbe9e72ec9c70f4a6bfc373f28a.tar.gz
Fix serious off by one error for FreeBSD keyword, this has been driving
me nuts as it was on by default and that is NOT what I wanted.
Diffstat (limited to 'gnu/usr.bin')
-rw-r--r--gnu/usr.bin/rcs/lib/rcskeys.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/gnu/usr.bin/rcs/lib/rcskeys.c b/gnu/usr.bin/rcs/lib/rcskeys.c
index b148dbb..cb80314 100644
--- a/gnu/usr.bin/rcs/lib/rcskeys.c
+++ b/gnu/usr.bin/rcs/lib/rcskeys.c
@@ -31,10 +31,15 @@ Report problems and direct all questions to:
/* $Log: rcskeys.c,v $
+ * Revision 1.3 1994/05/15 22:15:14 rgrimes
+ * To truely have the OLD behavior of RCS by default make the expansion
+ * of $FreeBSD$ false by default. This should keep them out
+ * of the pre 2.x repository. (Or at least make them useless in it).
+ *
* Revision 1.2 1994/05/14 07:00:23 rgrimes
* Add new option -K from David Dawes that allows you to turn on and off
* specific keyword substitution during a rcs co command.
- * Add the new keyword FreeBSD that is IDENTICAL in operation to $Id$.
+ * Add the new keyword FreeBSD that is IDENTICAL in operation to $Id: rcskeys.c,v 1.3 1994/05/15 22:15:14 rgrimes Exp $.
*
* Revision 1.1.1.1 1993/06/18 04:22:12 jkh
* Updated GNU utilities
@@ -68,7 +73,7 @@ Report problems and direct all questions to:
#include "rcsbase.h"
-libId(keysId, "$Id: rcskeys.c,v 1.2 1994/05/14 07:00:23 rgrimes Exp $")
+libId(keysId, "$Id: rcskeys.c,v 1.3 1994/05/15 22:15:14 rgrimes Exp $")
char const *const Keyword[] = {
@@ -85,7 +90,7 @@ char const *const Keyword[] = {
static int ExpandKeyword[] = {
nil,
true, true, true, true,
- true, true, true, true, true, true, true,
+ true, true, true, true, true, true,
false
};
OpenPOWER on IntegriCloud