]> git.saurik.com Git - bison.git/blobdiff - doc/bison.texinfo
* src/output.c (prepare): Use MUSCLE_INSERT_STRING.
[bison.git] / doc / bison.texinfo
index 5206a925e3d7242a113ea8bcd8e34e403cc3875a..b2637462c47ba31da6cc2b1da96354adfa9f706f 100644 (file)
@@ -1403,7 +1403,7 @@ rpcalc.tab.c  rpcalc.y
 @group
 # @r{Compile the Bison parser.}
 # @r{@samp{-lm} tells compiler to search math library for @code{pow}.}
-$ @kbd{cc rpcalc.tab.c -lm -o rpcalc}
+$ @kbd{cc -lm -o rpcalc rpcalc.tab.c}
 @end group
 
 @group
@@ -3796,8 +3796,8 @@ for (i = 0; i < YYNTOKENS; i++)
   @{
     if (yytname[i] != 0
         && yytname[i][0] == '"'
-        && strncmp (yytname[i] + 1, token_buffer,
-                    strlen (token_buffer))
+        && strncmp (yytname[i] + 1, token_buffer,
+                      strlen (token_buffer))
         && yytname[i][strlen (token_buffer) + 1] == '"'
         && yytname[i][strlen (token_buffer) + 2] == 0)
       break;
@@ -5812,7 +5812,7 @@ bison -d @var{infile.yxx}
 will produce @file{infile.tab.cxx} and @file{infile.tab.hxx}, and
 
 @example
-bison -d @var{infile.y} -o @var{output.c++}
+bison -d -o @var{output.c++} @var{infile.y}
 @end example
 @noindent
 will produce @file{output.c++} and @file{outfile.h++}.