]> git.saurik.com Git - bison.git/commitdiff
scanner: use explicit "ignore" statements
authorAkim Demaille <akim@lrde.epita.fr>
Wed, 14 Nov 2012 09:57:45 +0000 (10:57 +0100)
committerAkim Demaille <akim@lrde.epita.fr>
Wed, 14 Nov 2012 09:57:45 +0000 (10:57 +0100)
* src/scan-gram.l: here.

src/scan-gram.l

index ad061cc6f86159ba93da4023e60fa326111f8b86..8774dc0a54ebe43eec333be4e9e1272a6c62c519 100644 (file)
@@ -148,7 +148,7 @@ splice       (\\[ \f\t\v]*\n)*
   /* Comments and white space.  */
   ","          warn_at (*loc, _("stray ',' treated as white space"));
   [ \f\n\t\v]  |
-  "//".*       ;
+  "//".*       continue;
   "/*" {
     token_start = loc->start;
     context_state = YY_START;
@@ -403,7 +403,7 @@ splice       (\\[ \f\t\v]*\n)*
 <SC_YACC_COMMENT>
 {
   "*/"     BEGIN context_state;
-  .|\n    ;
+  .|\n    continue;
   <<EOF>>  unexpected_eof (token_start, "*/"); BEGIN context_state;
 }