summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/rcs/lib/rcsbase.h
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/usr.bin/rcs/lib/rcsbase.h')
-rw-r--r--gnu/usr.bin/rcs/lib/rcsbase.h19
1 files changed, 11 insertions, 8 deletions
diff --git a/gnu/usr.bin/rcs/lib/rcsbase.h b/gnu/usr.bin/rcs/lib/rcsbase.h
index 6d460436fa6..07816d80120 100644
--- a/gnu/usr.bin/rcs/lib/rcsbase.h
+++ b/gnu/usr.bin/rcs/lib/rcsbase.h
@@ -1,6 +1,6 @@
/* RCS common definitions and data structures */
-#define RCSBASE "$Id: rcsbase.h,v 1.1 1995/10/18 08:41:01 deraadt Exp $"
+#define RCSBASE "$Id: rcsbase.h,v 1.2 1996/04/19 12:40:06 mickey Exp $"
/* Copyright 1982, 1988, 1989 Walter Tichy
Copyright 1990, 1991, 1992, 1993, 1994 Paul Eggert
@@ -30,8 +30,12 @@ Report problems and direct all questions to:
/*
* $Log: rcsbase.h,v $
- * Revision 1.1 1995/10/18 08:41:01 deraadt
- * Initial revision
+ * Revision 1.2 1996/04/19 12:40:06 mickey
+ * -L<string> option added to support LOCALID behaviour.
+ * maybe set up in RCSINIT environment variable.
+ *
+ * Revision 1.1.1.1 1995/10/18 08:41:01 deraadt
+ * initial import of NetBSD tree
*
* Revision 1.6 1995/02/24 02:24:59 mycroft
* RCS 5.6.7.4
@@ -411,10 +415,8 @@ struct assoc {
#define keylength 8 /* max length of any of the above keywords */
enum markers { Nomatch, Author, Date, Header, Id,
-#ifdef LOCALID
- LocalId,
-#endif
- Locker, Log, Name, RCSfile, Revision, Source, State };
+ Locker, Log, Name, RCSfile, Revision, Source, State,
+ LocalId };
/* This must be in the same order as rcskeys.c's Keyword[] array. */
#define DELNUMFORM "\n\n%s\n%s\n"
@@ -518,7 +520,8 @@ extern struct buf prevauthor, prevdate, prevname, prevrev, prevstate;
int getoldkeys P((RILE*));
/* rcskeys */
-extern char const *const Keyword[];
+extern char const *Keyword[];
+void setRCSlocalId(char const *);
enum markers trymatch P((char const*));
/* rcslex */