]> git.saurik.com Git - bison.git/blobdiff - doc/bison.texinfo
Clean up some formatting.
[bison.git] / doc / bison.texinfo
index 3ee0ca57fea3aa04134348c7bf024ddabac0d4de..f6bd5d634678e0c801a8a3a3c6a679639b2022a3 100644 (file)
@@ -3391,7 +3391,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;
@@ -3726,8 +3727,8 @@ struct @{
 @};
 @end example
 
-Thus, to get the starting line number of the third component, use
-@samp{@@3.first_line}.
+Thus, to get the starting line number of the third component, you would
+use @samp{@@3.first_line}.
 
 In order for the members of this structure to contain valid information,
 you must make @code{yylex} supply this information about each token.