]> git.saurik.com Git - bison.git/blobdiff - src/scan-gram.l
Enable declaration of default %printer/%destructor. Make the parser
[bison.git] / src / scan-gram.l
index 25796dbd429b586fe1d6ba0ffe0815b2a35d35a3..eb5ee55af26b777cddbc252bcb6162cc12555e21 100644 (file)
@@ -37,7 +37,6 @@
 
 #include "complain.h"
 #include "files.h"
-#include "getargs.h"    /* yacc_flag */
 #include "gram.h"
 #include "quotearg.h"
 #include "reader.h"
@@ -54,7 +53,7 @@
    code_start = scanner_cursor = loc->start;           \
 
 /* Location of scanner cursor.  */
-boundary scanner_cursor;
+static boundary scanner_cursor;
 
 #define YY_USER_ACTION  location_compute (loc, &scanner_cursor, yytext, yyleng);
 
@@ -243,8 +242,6 @@ splice       (\\[ \f\t\v]*\n)*
 
   /* Code in between braces.  */
   "{" {
-    if (current_rule && current_rule->action)
-      grammar_midrule_action ();
     STRING_GROW;
     braces_level = 0;
     code_start = loc->start;