mirror of
https://git.savannah.gnu.org/git/bison.git
synced 2026-03-09 12:23: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:
@@ -1,3 +1,9 @@
|
||||
2002-01-03 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* src/parse-skel.y (process_skeleton): Don't bind the parser's
|
||||
tracing code to --trace, wait for a better --trace option, with
|
||||
args.
|
||||
|
||||
2002-01-03 Akim Demaille <akim@epita.fr>
|
||||
|
||||
* src/bison.simple (YYSTDERR): Remove, replace `stderr'.
|
||||
|
||||
@@ -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