mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-11 05:13:04 +00:00
* src/parse-skel.y (process_skeleton): Don't bind the parser's
tracing code to --trace, wait for a better --trace option, with args.
This commit is contained in:
@@ -247,8 +247,9 @@ process_skeleton (const char* skel)
|
||||
|
||||
/* Output. */
|
||||
skel_in = fopen (skel, "r");
|
||||
skel__flex_debug = 0;
|
||||
skel_debug = trace_flag ? 1 : 0;
|
||||
/* FIXME: This is not acceptable for a release. */
|
||||
skel__flex_debug = getenv ("BISON_TRACE_SCAN") ? 1 : 0;
|
||||
skel_debug = getenv ("BISON_TRACE_PARSE") ? 1 : 0;
|
||||
skel_parse (NULL);
|
||||
|
||||
/* Close the last parser. */
|
||||
|
||||
Reference in New Issue
Block a user