From: John Millaway Date: Tue, 14 Feb 2006 05:12:34 +0000 (+0000) Subject: Documentation patch. X-Git-Tag: flex-2-5-33~28 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e3788af7558aae54af6c07ad56680254903ec011;p=flex Documentation patch. --- diff --git a/doc/flex.texi b/doc/flex.texi index ed53def..9346113 100644 --- a/doc/flex.texi +++ b/doc/flex.texi @@ -3869,7 +3869,7 @@ Here is an example of a simple C++ scanner: If you want to create multiple (different) lexer classes, you use the @samp{-P} flag (or the @code{prefix=} option) to rename each @code{yyFlexLexer} to some other @samp{xxFlexLexer}. You then can -include @file{FlexLexer.h>} in your other sources once per lexer class, +include @file{} in your other sources once per lexer class, first renaming @code{yyFlexLexer} as follows: @cindex include files, with C++ @@ -3879,11 +3879,11 @@ first renaming @code{yyFlexLexer} as follows: @verbatim #undef yyFlexLexer #define yyFlexLexer xxFlexLexer - #include + #include #undef yyFlexLexer #define yyFlexLexer zzFlexLexer - #include FlexLexer.h> + #include @end verbatim @end example