* parse.y (debug_lines): Always prepare a new array for each

file's SCRIPT_LINES__ storage, instead of appending source lines
  every time a file is re-loaded; submitted by Rocky Bernstein in
  #18517.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15831 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
knu 2008-03-24 10:43:56 +00:00
parent 1b6572295a
commit 9bfc01ea17
2 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,10 @@
Mon Mar 24 19:23:52 2008 Akinori MUSHA <knu@iDaemons.org>
* parse.y (debug_lines): Always prepare a new array for each
file's SCRIPT_LINES__ storage, instead of appending source lines
every time a file is re-loaded; submitted by Rocky Bernstein in
#18517.
Mon Mar 24 10:25:54 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
* configure.in: sitearch should use target_cpu. [ruby-core:15986]

View File

@ -4680,11 +4680,8 @@ debug_lines(const char *f)
VALUE hash = rb_const_get_at(rb_cObject, rb_intern("SCRIPT_LINES__"));
if (TYPE(hash) == T_HASH) {
VALUE fname = rb_str_new2(f);
VALUE lines = rb_hash_lookup(hash, fname);
if (NIL_P(lines)) {
lines = rb_ary_new();
rb_hash_aset(hash, fname, lines);
}
VALUE lines = rb_ary_new();
rb_hash_aset(hash, fname, lines);
return lines;
}
}