summaryrefslogtreecommitdiff
path: root/parse.y
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-02-20 04:28:52 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-02-20 04:28:52 +0000
commit22768f9aefdb5e7a466bfd4e63dbfdf2bc5184b8 (patch)
tree33117ceb2e479bc146c1f40711234ae780df5748 /parse.y
parent92886835719364eac3497eeb74f10dce1ff6275a (diff)
* hash.c (rb_any_cmp): should handle Qundef in keys.
* eval.c (remove_method): should not remove a empty method to implement "undef". * eval.c (rb_eval): should allow singleton class def for true/false/nil. * parse.y (str_extend): backslash escape was done wrong. * class.c (rb_include_module): should preserve ancestor order in the included class/module. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@2101 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'parse.y')
-rw-r--r--parse.y2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.y b/parse.y
index 9307b7e144..2594f9be0d 100644
--- a/parse.y
+++ b/parse.y
@@ -3933,7 +3933,7 @@ str_extend(list, term, paren)
tokadd('\\');
tokadd(c);
}
- break;
+ goto loop_again;
case '{':
if (brace != -1) brace_nest++;
default: