diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-05-18 05:00:58 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-05-18 05:00:58 +0000 |
commit | cb8a0a8e4bd69adc8b9d7222391aa79e557fe21b (patch) | |
tree | 569096cb04499e213b7daa31f25f89d22a81cf6c /parse.y | |
parent | 64a1b5c352984127227f9c739a441d27af3032a2 (diff) |
* node.h (NEW_DSTR): adjust list length.
* parse.y (literal_concat): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6356 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r-- | parse.y | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -4652,6 +4652,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; |