diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-05-17 08:49:44 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-05-17 08:49:44 +0000 |
commit | c2fa753f7db4ea07c50ec8a182f78b1a263e0709 () | |
tree | d369e79d50446002f3bbffa4137e0e0d64ca424f | |
parent | ddb81a78f3596149758ff2e90454f30a7b90050b (diff) |
* eval.c (rb_call0): address of local_vars might change during eval.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1417 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 32 | ||||
-rw-r--r-- | eval.c | 8 | ||||
-rw-r--r-- | version.h | 4 |
3 files changed, 31 insertions, 13 deletions
@@ -1,41 +1,45 @@ Thu May 17 07:27:09 2001 Akinori MUSHA <[email protected]> * ext/md5/md5.txt.jp, ext/sha1/sha1.txt.jp: - s/SuperClass/Superclass/. Thu May 17 07:21:44 2001 Akinori MUSHA <[email protected]> * ext/Setup.dj, ext/Setup.emx, ext/Setup.nt, ext/Setup.x68: - compile sha1 in as well as md5. * ext/Setup: put sha1 in a comment. Thu May 17 07:16:38 2001 Akinori MUSHA <[email protected]> * ext/sha1/sha1.txt.jp: add the Japanese version derived from - ext/md5/md5.txt.jp. * ext/sha1/sha1.txt: revise the copyright info and reduce the - difference from ext/md5/md5.txt. * ext/md5/md5.txt: reduce the difference from ext/sha1/sha1.txt. Thu May 17 07:11:35 2001 Akinori MUSHA <[email protected]> * ext/sha1/extconf.rb, ext/sha1/sha1.c: use WORDS_BIGENDIAN to - detect the platform's endian. Thu May 17 06:31:30 2001 Akinori MUSHA <[email protected]> * ext/md5/md5.txt: make wording fixes, and mention the newly added - method: "<<". * ext/md5/md5.txt.jp: ditto. Wed May 16 18:05:52 2001 Akinori MUSHA <[email protected]> * ext/md5/md5init.c: add an instance method "<<" as an alias for - "update". (inspired by Steve Coltrin's ruby-sha1) Tue May 15 17:46:37 2001 Yukihiro Matsumoto <[email protected]> @@ -43,6 +47,11 @@ Tue May 15 17:46:37 2001 Yukihiro Matsumoto <[email protected]> * array.c (rb_ary_or): ditto. Mon May 14 13:50:22 2001 Yukihiro Matsumoto <[email protected]> * eval.c (rb_thread_schedule): should save context before raising @@ -64,6 +73,11 @@ Sun May 13 23:51:14 2001 Usaku Nakamura <[email protected]> * win32/resource.rb: Modify copyright in resource script. Sat May 12 15:43:55 2001 Usaku Nakamura <[email protected]> * win32/win32.c (kill): add support of signal 9 on mswin32/mingw32. @@ -77,12 +91,12 @@ Fri May 11 15:09:52 2001 WATANABE Hirofumi <[email protected]> Fri May 11 03:35:33 2001 Akinori MUSHA <[email protected]> * README.EXT: Document find_library(), with_config() and - dir_config(). Fri May 11 03:34:20 2001 Akinori MUSHA <[email protected]> * README.EXT.jp: Remove the description of find_header() because - such a function does not actually exist. * README.EXT.jp: Update the description of dir_config(). @@ -4435,11 +4435,15 @@ rb_call0(klass, recv, id, argc, argv, body, nosuper) } rb_eval(recv, opt); } if (node->nd_rest >= 0) { if (argc > 0) - local_vars[node->nd_rest]=rb_ary_new4(argc,argv); else - local_vars[node->nd_rest]=rb_ary_new2(0); } } } @@ -1,4 +1,4 @@ #define RUBY_VERSION "1.7.0" -#define RUBY_RELEASE_DATE "2001-05-16" #define RUBY_VERSION_CODE 170 -#define RUBY_RELEASE_CODE 20010516 |