diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 1998-08-14 06:35:37 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1998-08-14 06:35:37 +0000 |
commit | 9cd4d748f903aafb25e36dff2988340c01293e32 (patch) | |
tree | 2085d5a694fed4967d6614ef24baf2d7373d712d /usr.bin/lex | |
parent | b5be0bd29d8ab8c2bc7840a8266f6034b369e8c6 (diff) | |
download | src-test2-9cd4d748f903aafb25e36dff2988340c01293e32.tar.gz src-test2-9cd4d748f903aafb25e36dff2988340c01293e32.zip |
Notes
Diffstat (limited to 'usr.bin/lex')
-rw-r--r-- | usr.bin/lex/lex.1 | 2 | ||||
-rw-r--r-- | usr.bin/lex/main.c | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/lex/lex.1 b/usr.bin/lex/lex.1 index e135a49d7ecf..d05cdab7b10b 100644 --- a/usr.bin/lex/lex.1 +++ b/usr.bin/lex/lex.1 @@ -3196,7 +3196,7 @@ When using this option, flex defaults to generating the scanner to the file instead of .B lex.yy.c. The generated scanner includes the header file -.I FlexLexer.h, +.I g++/FlexLexer.h, which defines the interface to two C++ classes. .PP The first class, diff --git a/usr.bin/lex/main.c b/usr.bin/lex/main.c index bc1e8c9c3bd1..2b04f6cf77a2 100644 --- a/usr.bin/lex/main.c +++ b/usr.bin/lex/main.c @@ -32,7 +32,7 @@ char copyright[] = All rights reserved.\n"; #endif /* not lint */ -/* $Header: /home/ncvs/src/usr.bin/lex/main.c,v 1.1.1.2 1996/06/19 20:26:16 nate Exp $ */ +/* $Header: /home/ncvs/src/usr.bin/lex/main.c,v 1.3 1996/06/19 20:47:29 nate Exp $ */ #include "flexdef.h" @@ -1006,7 +1006,7 @@ _( "Variable trailing context rules entail a large performance penalty\n" ) ); if ( C_plus_plus ) { - outn( "\n#include <FlexLexer.h>" ); + outn( "\n#include <g++/FlexLexer.h>" ); if ( yyclass ) { |