aboutsummaryrefslogtreecommitdiffstats
path: root/parse.y
diff options
context:
space:
mode:
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y5
1 files changed, 5 insertions, 0 deletions
diff --git a/parse.y b/parse.y
index 1935160fb2..cf05a9c891 100644
--- a/parse.y
+++ b/parse.y
@@ -6406,6 +6406,7 @@ parser_heredoc_identifier(struct parser_params *parser)
int c = nextc(), term, func = 0;
int token = tSTRING_BEG;
long len;
+ int newline = 0;
if (c == '-') {
c = nextc();
@@ -6432,11 +6433,15 @@ parser_heredoc_identifier(struct parser_params *parser)
term = c;
while ((c = nextc()) != -1 && c != term) {
if (tokadd_mbchar(c) == -1) return 0;
+ if (c == '\n') newline = 1;
}
if (c == -1) {
compile_error(PARSER_ARG "unterminated here document identifier");
return 0;
}
+ if (newline) {
+ rb_warn0("here document identifier contains newline");
+ }
break;
default: