From df19b4cc03ef8f45dcaf690027bcbda99152f5c9 Mon Sep 17 00:00:00 2001 From: aamine Date: Fri, 6 Sep 2002 23:41:43 +0000 Subject: * parse.y (rb_gc_mark_parser): ruby_eval_tree is marked in eval.c. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2812 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ parse.y | 2 -- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index ecf088e2b..51d2c511b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sat Sep 7 08:41:39 2002 Minero Aoki + + * parse.y (rb_gc_mark_parser): ruby_eval_tree is marked in eval.c. + Fri Sep 6 20:01:38 2002 Nobuyoshi Nakada * lib/mkmf.rb ($CC): command to compile C source. diff --git a/parse.y b/parse.y index a09310588..3e9d47eea 100644 --- a/parse.y +++ b/parse.y @@ -5359,8 +5359,6 @@ rb_gc_mark_parser() if (!ruby_in_compile) return; rb_gc_mark_maybe((VALUE)yylval.node); - rb_gc_mark((VALUE)ruby_eval_tree_begin); - rb_gc_mark((VALUE)ruby_eval_tree); rb_gc_mark(ruby_debug_lines); rb_gc_mark(lex_lastline); rb_gc_mark(lex_input); -- cgit