aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-25 01:07:35 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-25 01:07:35 +0000
commitb08ff5cd8840c1136c9d0ff6c347b7df1f83ff6f (patch)
tree9d78c61170f3e164636a4dcd753b0409ff15a3fb /parse.y
parentff48ce5467a98dbd691827cdbefa84317f66fd76 (diff)
downloadruby-b08ff5cd8840c1136c9d0ff6c347b7df1f83ff6f.tar.gz
keep line number after unterminated string literal
* parse.y (parser_parse_string): keep line number even after an unterminated string literal. it does not matter in the parser, ripper needs this value after this error. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@58080 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y1
1 files changed, 0 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index 01f0c9a64c..4275f245b8 100644
--- a/parse.y
+++ b/parse.y
@@ -6207,7 +6207,6 @@ parser_parse_string(struct parser_params *parser, NODE *quote)
pushback(c);
if (tokadd_string(func, term, paren, &quote->nd_nest,
&enc) == -1) {
- ruby_sourceline = nd_line(quote);
if (func & STR_FUNC_REGEXP) {
if (parser->eofp)
compile_error(PARSER_ARG "unterminated regexp meets end of file");