(reader): Remove gram_control; it wasn't being used.

This commit is contained in:
Paul Eggert
2002-11-29 05:59:59 +00:00
parent 4f39538148
commit 78c3da9e09

View File

@@ -469,8 +469,6 @@ packgram (void)
void void
reader (void) reader (void)
{ {
gram_control_t gram_control;
/* Initialize the symbol table. */ /* Initialize the symbol table. */
symbols_new (); symbols_new ();
@@ -500,7 +498,7 @@ reader (void)
gram__flex_debug = trace_flag & trace_scan; gram__flex_debug = trace_flag & trace_scan;
gram_debug = trace_flag & trace_parse; gram_debug = trace_flag & trace_parse;
scanner_initialize (); scanner_initialize ();
gram_parse (&gram_control); gram_parse ();
/* If something went wrong during the parsing, don't try to /* If something went wrong during the parsing, don't try to
continue. */ continue. */