mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* parse.y (rb_gc_mark_parser): should mark lex_input and ruby_debug_lines.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2808 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e389d3d153
commit
95d65e34e1
2 changed files with 10 additions and 3 deletions
|
@ -1,7 +1,12 @@
|
|||
Fri Sep 6 12:11:22 2002 Minero Aoki <aamine@loveruby.net>
|
||||
|
||||
* parse.y (rb_gc_mark_parser): should mark ALL global variables
|
||||
defined in parse.y.
|
||||
|
||||
Fri Sep 6 11:47:37 2002 Minero Aoki <aamine@loveruby.net>
|
||||
|
||||
* parse.y (rb_gc_mark_parser): should mark parse.y global
|
||||
variables.
|
||||
* parse.y (rb_gc_mark_parser): should mark global variables
|
||||
defined in parse.y.
|
||||
|
||||
Fri Sep 6 10:34:32 2002 Minero Aoki <aamine@loveruby.net>
|
||||
|
||||
|
|
4
parse.y
4
parse.y
|
@ -5361,7 +5361,9 @@ rb_gc_mark_parser()
|
|||
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((VALUE)lex_lastline);
|
||||
rb_gc_mark(ruby_debug_lines);
|
||||
rb_gc_mark(lex_lastline);
|
||||
rb_gc_mark(lex_input);
|
||||
rb_gc_mark((VALUE)lex_strterm);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue