summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-02-21 18:02:19 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-02-21 18:02:19 +0000
commit42b485d98beeac96547a045fc8f996699a63db7b (patch)
tree148f4146def8e9f077355fd2f6384da41bf65c0e
parent8e6088c57d9d6a3f2920f2f0e8d26bb5d86cb49d (diff)
downloadruby-42b485d98beeac96547a045fc8f996699a63db7b.tar.gz
ruby-42b485d98beeac96547a045fc8f996699a63db7b.tar.xz
ruby-42b485d98beeac96547a045fc8f996699a63db7b.zip
* eval.c (rb_thread_create): may called from place higher than
rb_gc_stack_start. * gc.c (Init_stack): update rb_gc_stack_start if it is lower (or higher if stack grows down) than the previous value. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@3527 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e1aefa7a0..0e52985d0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+Sat Feb 22 02:45:20 2003 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * eval.c (rb_thread_create): may called from place higher than
+ rb_gc_stack_start.
+
+ * gc.c (Init_stack): update rb_gc_stack_start if it is lower (or
+ higher if stack grows down) than the previous value.
+
Fri Feb 21 21:03:41 2003 Minero Aoki <aamine@loveruby.net>
* lib/fileutils.rb: new method FileUtils#copy_stream.