summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-07-13 00:32:46 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-07-13 00:32:46 +0000
commit9b198b3d85c6523c3afa9bcbcb1c8737339f107f (patch)
treefb8623f9d680dfce011fa5ca6cf7644d666e36fd /parse.y
parentd554a55d9b98dc832fe0257f8696dc93b211789d (diff)
* parse.y (literal_concat_string): wrong optimization.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2644 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y3
1 files changed, 1 insertions, 2 deletions
diff --git a/parse.y b/parse.y
index ef5db61dfb..d0dac69d92 100644
--- a/parse.y
+++ b/parse.y
@@ -4367,8 +4367,7 @@ literal_concat_string(head, tail, str)
head->nd_alen += 1;
}
if (!tail) tail = NEW_STR(str);
- last1->nd_next = NEW_LIST(tail);
- head->nd_alen += 1;
+ list_append(head, tail);
return head;
}
}