diff options
author | Marius Kintel <marius@kintel.net> | 2012-02-04 01:41:43 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2012-02-15 00:32:37 (GMT) |
commit | eaeec7aa9ad7bc37af33607e1a8d236beccc9717 (patch) | |
tree | 4f9aa38b7bb2ca643a1b4f00b5dfac2a41296f35 /src/parser.y | |
parent | 061c1575473c730c947bdc7a9d14812ac36265fa (diff) |
Comment out some debug info to let tests pass
Diffstat (limited to 'src/parser.y')
-rw-r--r-- | src/parser.y | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/parser.y b/src/parser.y index 85fee48..2f4379a 100644 --- a/src/parser.y +++ b/src/parser.y @@ -572,7 +572,6 @@ std::string parser_source_path; Module *parse(const char *text, const char *path, int debug) { - PRINT_NOCACHE("New parser"); lexerin = NULL; parser_error_pos = -1; parser_input_buffer = text; @@ -580,7 +579,7 @@ Module *parse(const char *text, const char *path, int debug) module_stack.clear(); Module *rootmodule = currmodule = new Module(); - PRINTB_NOCACHE("New module: %s %p", "root" % rootmodule); + // PRINTB_NOCACHE("New module: %s %p", "root" % rootmodule); parserdebug = debug; parserparse(); |