diff options
| author | Yukihiro Matsumoto <[email protected]> | 2012-06-15 15:34:49 +0900 |
|---|---|---|
| committer | Yukihiro Matsumoto <[email protected]> | 2012-06-15 15:34:49 +0900 |
| commit | 76f7aecff326666543d9bac31fe13e0cab8e05f4 (patch) | |
| tree | e9bf296dc74535f334852e9cb5763005e2747ddb /src/parse.y | |
| parent | 4aa9111f9a107b3b0c6f1c13d933cbcd39f2a787 (diff) | |
| download | mruby-76f7aecff326666543d9bac31fe13e0cab8e05f4.tar.gz mruby-76f7aecff326666543d9bac31fe13e0cab8e05f4.zip | |
use ENABLE/DISABLE instead of INCLUDE for configuration macro names
Diffstat (limited to 'src/parse.y')
| -rw-r--r-- | src/parse.y | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/parse.y b/src/parse.y index 5e44dd85a..b7eaaa4e4 100644 --- a/src/parse.y +++ b/src/parse.y @@ -4776,9 +4776,6 @@ mrb_compile_file(mrb_state * mrb, FILE *f) if (!p) return -1; if (!p->tree) return -1; if (p->nerr) return -1; -#ifdef PARSER_DUMP - parser_dump(mrb, p->tree, 0); -#endif n = mrb_generate_code(mrb, p->tree); mrb_pool_close(p->pool); @@ -4795,9 +4792,6 @@ mrb_compile_nstring(mrb_state *mrb, char *s, size_t len) if (!p) return -1; if (!p->tree) return -1; if (p->nerr) return -1; -#ifdef PARSER_DUMP - parser_dump(mrb, p->tree, 0); -#endif n = mrb_generate_code(mrb, p->tree); mrb_pool_close(p->pool); |
