summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-01-04 12:11:37 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-01-04 12:11:37 +0900
commit35c3a24c8cbcccff1108079360e2063fc354b4bd (patch)
treeb274f69203f0575cff52483e04ff43e81477b902 /parse.y
parent68c2fc4cc0b3bbf865c381d1ff1281a3ac520cd6 (diff)
Fixed error message when % at EOF
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y4
1 files changed, 3 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index bd1717d724..ff00fa8e35 100644
--- a/parse.y
+++ b/parse.y
@@ -8659,7 +8659,8 @@ parse_percent(struct parser_params *p, const int space_seen, const enum lex_stat
c = nextc(p);
quotation:
- if (c == -1 || !ISALNUM(c)) {
+ if (c == -1) goto unterminated;
+ if (!ISALNUM(c)) {
term = c;
if (!ISASCII(c)) goto unknown;
c = 'Q';
@@ -8677,6 +8678,7 @@ parse_percent(struct parser_params *p, const int space_seen, const enum lex_stat
}
}
if (term == -1) {
+ unterminated:
compile_error(p, "unterminated quoted string meets end of file");
return 0;
}