summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-07-05 10:04:56 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-07-05 10:04:56 +0000
commite3a15b08f2fd5cd7b8293e3188a0d25bdf0c914e (patch)
treed9045d9e1835d881258b638ceb4552c887f720c8 /ChangeLog
parent7712d2b868a439c3c4215e0e320fbab8b605a86d (diff)
downloadruby-e3a15b08f2fd5cd7b8293e3188a0d25bdf0c914e.tar.gz
ruby-e3a15b08f2fd5cd7b8293e3188a0d25bdf0c914e.tar.xz
ruby-e3a15b08f2fd5cd7b8293e3188a0d25bdf0c914e.zip
* compile.c (iseq_compile_each): add break catch point.
* insns.def (throw): support correct "break" and "return". this commit achieve that "make test" passes all tests. * vm.c: ditto. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@12703 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d016a08cb..d126017c8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+Thu Jul 5 18:42:01 2007 Koichi Sasada <ko1@atdot.net>
+
+ * compile.c (iseq_compile_each): add break catch point.
+
+ * insns.def (throw): support correct "break" and "return".
+ this commit achieve that "make test" passes all tests.
+
+ * vm.c: ditto.
+
Thu Jul 5 18:44:12 2007 Tanaka Akira <akr@fsij.org>
* parse.y (mlhs_basic): use mlhs_post after tSTAR.