]> git.saurik.com Git - bison.git/blobdiff - src/reader.c
Generalize the display of semantic values and locations in traces.
[bison.git] / src / reader.c
index 6b247b7f2d845a764faadfc5ea3adefd79c51d97..62f645b403794c8e9ec9d3cc482f2202fb83a3c3 100644 (file)
@@ -474,8 +474,7 @@ reader (void)
   obstack_init (&pre_prologue_obstack);
   obstack_init (&post_prologue_obstack);
 
-  finput = xfopen (grammar_file, "r");
-  gram_in = finput;
+  gram_in = xfopen (grammar_file, "r");
 
   gram__flex_debug = trace_flag & trace_scan;
   gram_debug = trace_flag & trace_parse;
@@ -523,7 +522,7 @@ reader (void)
   if (! (nsyms <= SYMBOL_NUMBER_MAXIMUM && nsyms == ntokens + nvars))
     abort ();
 
-  xfclose (finput);
+  xfclose (gram_in);
 
   /* Assign the symbols their symbol numbers.  Write #defines for the
      token symbols into FDEFINES if requested.  */