From: Paul Eggert Date: Fri, 29 Nov 2002 05:59:59 +0000 (+0000) Subject: (reader): Remove gram_control; it wasn't being used. X-Git-Tag: BISON-1_875~193 X-Git-Url: https://git.saurik.com/bison.git/commitdiff_plain/78c3da9e09e60da5d41aba898dd3adffc1cfd4d0?ds=sidebyside (reader): Remove gram_control; it wasn't being used. --- diff --git a/src/reader.c b/src/reader.c index 5ed02b2e..02d98b36 100644 --- a/src/reader.c +++ b/src/reader.c @@ -469,8 +469,6 @@ packgram (void) void reader (void) { - gram_control_t gram_control; - /* Initialize the symbol table. */ symbols_new (); @@ -500,7 +498,7 @@ reader (void) gram__flex_debug = trace_flag & trace_scan; gram_debug = trace_flag & trace_parse; scanner_initialize (); - gram_parse (&gram_control); + gram_parse (); /* If something went wrong during the parsing, don't try to continue. */