From e72199d03bbc65e1e25c028d7b55110e549bd56e Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 18 May 2004 05:00:58 +0000 Subject: * node.h (NEW_DSTR): adjust list length. * parse.y (literal_concat): ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6356 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- parse.y | 1 + 1 file changed, 1 insertion(+) (limited to 'parse.y') diff --git a/parse.y b/parse.y index 03369ea24..d934774eb 100644 --- a/parse.y +++ b/parse.y @@ -4681,6 +4681,7 @@ literal_concat(head, tail) case NODE_EVSTR: if (htype == NODE_STR) { nd_set_type(head, NODE_DSTR); + head->nd_alen = 1; } list_append(head, tail); break; -- cgit