1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

parse.y: non-shady ruby_debug_lines

* parse.y (parser_set_encode): get rid of making ruby_debug_lines
  non-shady.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41244 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-06-12 03:00:22 +00:00
parent 6ff25d132d
commit 299d96cadd

View file

@ -6562,10 +6562,10 @@ parser_set_encode(struct parser_params *parser, const char *name)
parser->enc = enc;
#ifndef RIPPER
if (ruby_debug_lines) {
long i, n = RARRAY_LEN(ruby_debug_lines);
const VALUE *p = RARRAY_PTR(ruby_debug_lines);
VALUE lines = ruby_debug_lines;
long i, n = RARRAY_LEN(lines);
for (i = 0; i < n; ++i) {
rb_enc_associate_index(*p, idx);
rb_enc_associate_index(RARRAY_AREF(lines, i), idx);
}
}
#endif