1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* eval.c (get_errinfo): return th->errinfo value

if normal errinfo place (dynamic local viriable) is not found.
  fixes Bug #732 [ruby-dev:37046].
* bootstraptest/test_proc.rb: add a test.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21086 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2008-12-27 04:45:28 +00:00
parent e434135ecb
commit bd96f1fe70
3 changed files with 18 additions and 1 deletions

View file

@ -1,3 +1,11 @@
Sat Dec 27 13:36:55 2008 Koichi Sasada <ko1@atdot.net>
* eval.c (get_errinfo): return th->errinfo value
if normal errinfo place (dynamic local viriable) is not found.
fixes Bug #732 [ruby-dev:37046].
* bootstraptest/test_proc.rb: add a test.
Sat Dec 27 13:10:43 2008 Yuki Sonoda (Yugui) <yugui@yugui.jp>
* man/irb.1: adds -v, -h, -E and -U.

View file

@ -418,3 +418,11 @@ assert_equal 'foo!', %q{
fp.bar
}, 'Subclass of Proc'
assert_equal 'ok', %q{
at_exit{
print $!.message
}
raise "ok"
}

3
eval.c
View file

@ -961,7 +961,8 @@ get_errinfo(void)
return *ptr;
}
else {
return Qnil;
rb_thread_t *th = GET_THREAD();
return th->errinfo;
}
}