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:
parent
6ff25d132d
commit
299d96cadd
6
parse.y
6
parse.y
@ -6562,10 +6562,10 @@ parser_set_encode(struct parser_params *parser, const char *name)
|
|||||||
parser->enc = enc;
|
parser->enc = enc;
|
||||||
#ifndef RIPPER
|
#ifndef RIPPER
|
||||||
if (ruby_debug_lines) {
|
if (ruby_debug_lines) {
|
||||||
long i, n = RARRAY_LEN(ruby_debug_lines);
|
VALUE lines = ruby_debug_lines;
|
||||||
const VALUE *p = RARRAY_PTR(ruby_debug_lines);
|
long i, n = RARRAY_LEN(lines);
|
||||||
for (i = 0; i < n; ++i) {
|
for (i = 0; i < n; ++i) {
|
||||||
rb_enc_associate_index(*p, idx);
|
rb_enc_associate_index(RARRAY_AREF(lines, i), idx);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user