From 8d7c2de91b8250a53fa90b612c367ee28dc06e57 Mon Sep 17 00:00:00 2001 From: obrien Date: Wed, 27 Oct 1999 07:56:49 +0000 Subject: After a proper import we now have both the original RCS tags + our own. (also now clearer in ``cvs log'' that we are at version 2.5.4) --- usr.bin/lex/FlexLexer.h | 1 + usr.bin/lex/ccl.c | 1 + usr.bin/lex/dfa.c | 1 + usr.bin/lex/ecs.c | 1 + usr.bin/lex/flex.skl | 1 + usr.bin/lex/flexdef.h | 3 ++- usr.bin/lex/gen.c | 1 + usr.bin/lex/initscan.c | 1 + usr.bin/lex/lib/libmain.c | 3 ++- usr.bin/lex/lib/libyywrap.c | 3 ++- usr.bin/lex/main.c | 1 + usr.bin/lex/misc.c | 1 + usr.bin/lex/nfa.c | 1 + usr.bin/lex/parse.y | 1 + usr.bin/lex/scan.l | 1 + usr.bin/lex/skel.c | 1 + usr.bin/lex/sym.c | 1 + usr.bin/lex/tblcmp.c | 1 + usr.bin/lex/yylex.c | 1 + 19 files changed, 22 insertions(+), 3 deletions(-) diff --git a/usr.bin/lex/FlexLexer.h b/usr.bin/lex/FlexLexer.h index 52c656f..12d8274 100644 --- a/usr.bin/lex/FlexLexer.h +++ b/usr.bin/lex/FlexLexer.h @@ -1,3 +1,4 @@ +// $Header: /home/daffy/u0/vern/flex/RCS/FlexLexer.h,v 1.19 96/05/25 20:43:02 vern Exp $ // $FreeBSD$ // FlexLexer.h -- define interfaces for lexical analyzer classes generated diff --git a/usr.bin/lex/ccl.c b/usr.bin/lex/ccl.c index 243e739..ea482ac 100644 --- a/usr.bin/lex/ccl.c +++ b/usr.bin/lex/ccl.c @@ -26,6 +26,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ +/* $Header: /home/daffy/u0/vern/flex/RCS/ccl.c,v 2.9 93/09/16 20:32:14 vern Exp $ */ /* $FreeBSD$ */ #include "flexdef.h" diff --git a/usr.bin/lex/dfa.c b/usr.bin/lex/dfa.c index 8b023cb..810c149 100644 --- a/usr.bin/lex/dfa.c +++ b/usr.bin/lex/dfa.c @@ -26,6 +26,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ +/* $Header: /home/daffy/u0/vern/flex/RCS/dfa.c,v 2.26 95/04/20 13:53:14 vern Exp $ */ /* $FreeBSD$ */ #include "flexdef.h" diff --git a/usr.bin/lex/ecs.c b/usr.bin/lex/ecs.c index fa7206a..cdef5c8 100644 --- a/usr.bin/lex/ecs.c +++ b/usr.bin/lex/ecs.c @@ -26,6 +26,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ +/* $Header: /home/daffy/u0/vern/flex/RCS/ecs.c,v 2.9 93/12/07 10:18:20 vern Exp $ */ /* $FreeBSD$ */ #include "flexdef.h" diff --git a/usr.bin/lex/flex.skl b/usr.bin/lex/flex.skl index 589b1b2..e894a27 100644 --- a/usr.bin/lex/flex.skl +++ b/usr.bin/lex/flex.skl @@ -1,6 +1,7 @@ /* A lexical scanner generated by flex */ /* Scanner skeleton version: + * $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.91 96/09/10 16:58:48 vern Exp $ * $FreeBSD$ */ diff --git a/usr.bin/lex/flexdef.h b/usr.bin/lex/flexdef.h index 62ccf3c..6fc168c 100644 --- a/usr.bin/lex/flexdef.h +++ b/usr.bin/lex/flexdef.h @@ -26,7 +26,8 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ -/* @(#) $FreeBSD$ (LBL) */ +/* @(#) $Header: /home/daffy/u0/vern/flex/RCS/flexdef.h,v 2.53 95/04/20 11:17:36 vern Exp $ (LBL) */ +/* $FreeBSD$ */ #include #include diff --git a/usr.bin/lex/gen.c b/usr.bin/lex/gen.c index c0efadf..437471c 100644 --- a/usr.bin/lex/gen.c +++ b/usr.bin/lex/gen.c @@ -26,6 +26,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ +/* $Header: /home/daffy/u0/vern/flex/RCS/gen.c,v 2.56 96/05/25 20:43:38 vern Exp $ */ /* $FreeBSD$ */ #include "flexdef.h" diff --git a/usr.bin/lex/initscan.c b/usr.bin/lex/initscan.c index 6ccb56e..3cf4849 100644 --- a/usr.bin/lex/initscan.c +++ b/usr.bin/lex/initscan.c @@ -2,6 +2,7 @@ /* A lexical scanner generated by flex */ /* Scanner skeleton version: + * $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.91 96/09/10 16:58:48 vern Exp $ * $FreeBSD$ */ diff --git a/usr.bin/lex/lib/libmain.c b/usr.bin/lex/lib/libmain.c index 0bcdbfc..426eb98 100644 --- a/usr.bin/lex/lib/libmain.c +++ b/usr.bin/lex/lib/libmain.c @@ -1,6 +1,7 @@ /* libmain - flex run-time support library "main" function */ -/* $FreeBSD$ */ +/* $Header: /home/daffy/u0/vern/flex/RCS/libmain.c,v 1.4 95/09/27 12:47:55 vern Exp $ + * $FreeBSD$ */ extern int yylex(); diff --git a/usr.bin/lex/lib/libyywrap.c b/usr.bin/lex/lib/libyywrap.c index 3618f8d..75c669c 100644 --- a/usr.bin/lex/lib/libyywrap.c +++ b/usr.bin/lex/lib/libyywrap.c @@ -1,6 +1,7 @@ /* libyywrap - flex run-time support library "yywrap" function */ -/* $FreeBSD$ */ +/* $Header: /home/daffy/u0/vern/flex/RCS/libyywrap.c,v 1.1 93/10/02 15:23:09 vern Exp $ + * $FreeBSD$ */ int yywrap() { diff --git a/usr.bin/lex/main.c b/usr.bin/lex/main.c index 2c7836d..97eff98 100644 --- a/usr.bin/lex/main.c +++ b/usr.bin/lex/main.c @@ -32,6 +32,7 @@ char copyright[] = All rights reserved.\n"; #endif /* not lint */ +/* $Header: /home/daffy/u0/vern/flex/RCS/main.c,v 2.64 96/05/25 20:42:42 vern Exp $ */ /* $FreeBSD$ */ diff --git a/usr.bin/lex/misc.c b/usr.bin/lex/misc.c index 54ca3a4..6a05078 100644 --- a/usr.bin/lex/misc.c +++ b/usr.bin/lex/misc.c @@ -26,6 +26,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ +/* $Header: /home/daffy/u0/vern/flex/RCS/misc.c,v 2.47 95/04/28 11:39:39 vern Exp $ */ /* $FreeBSD$ */ #include "flexdef.h" diff --git a/usr.bin/lex/nfa.c b/usr.bin/lex/nfa.c index c0cb542..d101f37 100644 --- a/usr.bin/lex/nfa.c +++ b/usr.bin/lex/nfa.c @@ -26,6 +26,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ +/* $Header: /home/daffy/u0/vern/flex/RCS/nfa.c,v 2.17 95/03/04 16:11:42 vern Exp $ */ /* $FreeBSD$ */ #include "flexdef.h" diff --git a/usr.bin/lex/parse.y b/usr.bin/lex/parse.y index d98d032..dc71379 100644 --- a/usr.bin/lex/parse.y +++ b/usr.bin/lex/parse.y @@ -33,6 +33,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ +/* $Header: /home/daffy/u0/vern/flex/RCS/parse.y,v 2.28 95/04/21 11:51:51 vern Exp $ */ /* $FreeBSD$ */ diff --git a/usr.bin/lex/scan.l b/usr.bin/lex/scan.l index c13c6f7..cee8a16 100644 --- a/usr.bin/lex/scan.l +++ b/usr.bin/lex/scan.l @@ -27,6 +27,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ +/* $Header: /home/daffy/u0/vern/flex/RCS/scan.l,v 2.56 95/04/24 12:17:19 vern Exp $ */ /* $FreeBSD$ */ #include "flexdef.h" diff --git a/usr.bin/lex/skel.c b/usr.bin/lex/skel.c index 42dfcc1..e79543d 100644 --- a/usr.bin/lex/skel.c +++ b/usr.bin/lex/skel.c @@ -6,6 +6,7 @@ const char *skel[] = { "/* A lexical scanner generated by flex */", "", "/* Scanner skeleton version:", + " * $Header: /home/daffy/u0/vern/flex/RCS/flex.skl,v 2.91 96/09/10 16:58:48 vern Exp $", " * $FreeBSD$", " */", "", diff --git a/usr.bin/lex/sym.c b/usr.bin/lex/sym.c index f287e90..ac1c4b2 100644 --- a/usr.bin/lex/sym.c +++ b/usr.bin/lex/sym.c @@ -26,6 +26,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ +/* $Header: /home/daffy/u0/vern/flex/RCS/sym.c,v 2.19 95/03/04 16:11:04 vern Exp $ */ /* $FreeBSD$ */ #include "flexdef.h" diff --git a/usr.bin/lex/tblcmp.c b/usr.bin/lex/tblcmp.c index 8668a75..be5491a 100644 --- a/usr.bin/lex/tblcmp.c +++ b/usr.bin/lex/tblcmp.c @@ -26,6 +26,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ +/* $Header: /home/daffy/u0/vern/flex/RCS/tblcmp.c,v 2.11 94/11/05 17:08:28 vern Exp $ */ /* $FreeBSD$ */ #include "flexdef.h" diff --git a/usr.bin/lex/yylex.c b/usr.bin/lex/yylex.c index 03fbf56..6c7ee3e 100644 --- a/usr.bin/lex/yylex.c +++ b/usr.bin/lex/yylex.c @@ -26,6 +26,7 @@ * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. */ +/* $Header: /home/daffy/u0/vern/flex/RCS/yylex.c,v 2.13 95/03/04 16:10:41 vern Exp $ */ /* $FreeBSD$ */ #include -- cgit v1.1