From e70cad609109d111f6474d4001455a6dae70d453 Mon Sep 17 00:00:00 2001 From: yui-knk Date: Mon, 16 Jul 2018 02:07:44 +0000 Subject: [PATCH] parse.y (heredoc_identifier): Update comment for term_len git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63976 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- parse.y | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/parse.y b/parse.y index 094341170b..94f6276134 100644 --- a/parse.y +++ b/parse.y @@ -5980,7 +5980,11 @@ parse_string(struct parser_params *p, rb_strterm_literal_t *quote) static enum yytokentype heredoc_identifier(struct parser_params *p) { - int c = nextc(p), term, func = 0, term_len = 2; /* length of "<<" */ + /* + * term_len is length of `<<"END"` except `END`, + * in this case term_len is 4 (<, <, " and "). + */ + int c = nextc(p), term, func = 0, term_len = 2; enum yytokentype token = tSTRING_BEG; long len; int newline = 0;