diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-01-09 07:33:27 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-01-09 07:33:27 +0000 |
| commit | 7b2cc3097c611605ad2b7a8284674ca552a85859 (patch) | |
| tree | d1befffabe67a568b8257aafac5b013174facd7e | |
| parent | 1a9d0f4d6a709b016026aeb2e40f2115eeb82f88 (diff) | |
| download | ruby-7b2cc3097c611605ad2b7a8284674ca552a85859.tar.gz ruby-7b2cc3097c611605ad2b7a8284674ca552a85859.tar.xz ruby-7b2cc3097c611605ad2b7a8284674ca552a85859.zip | |
* eval.c (rb_eval): should not discard nested NODE_BLOCK.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3316 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | eval.c | 3 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Thu Jan 9 16:31:51 2003 Yukihiro Matsumoto <matz@ruby-lang.org> + + * eval.c (rb_eval): should not discard nested NODE_BLOCK. + Thu Jan 9 15:12:30 2003 Yukihiro Matsumoto <matz@ruby-lang.org> * parse.y (stmt): NODE_NOT elimitation for if/unless/while/until node. @@ -2226,7 +2226,8 @@ rb_eval(self, n) switch (nd_type(node)) { case NODE_BLOCK: if (contnode) { - rb_bug("nested NODE_BLOCK"); + result = rb_eval(self, node); + break; } contnode = node->nd_next; node = node->nd_head; |
