* eval.c (rb_rescue2): intialization miss. fixed: [ruby-dev:26917]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9050 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
3b18462de7
commit
aae7040cd0
@ -1,3 +1,7 @@
|
|||||||
|
Tue Aug 30 23:06:29 2005 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* eval.c (rb_rescue2): intialization miss. fixed: [ruby-dev:26917]
|
||||||
|
|
||||||
Tue Aug 30 19:34:27 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
Tue Aug 30 19:34:27 2005 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
||||||
|
|
||||||
* ext/digest/md5/md5ossl.h, ext/digest/rmd160/rmd160ossl.h,
|
* ext/digest/md5/md5ossl.h, ext/digest/rmd160/rmd160ossl.h,
|
||||||
@ -23,10 +27,10 @@ Mon Aug 29 19:47:18 2005 Hirokazu Yamamoto <ocean@m2.ccsnet.ne.jp>
|
|||||||
Mon Aug 29 18:58:05 2005 Keiju Ishitsuka <keiju@ruby-lang.org>
|
Mon Aug 29 18:58:05 2005 Keiju Ishitsuka <keiju@ruby-lang.org>
|
||||||
* lib/irb/init.rb: make IRB -I option that is same befavior for ruby.
|
* lib/irb/init.rb: make IRB -I option that is same befavior for ruby.
|
||||||
[ruby-dev:26872]
|
[ruby-dev:26872]
|
||||||
|
|
||||||
* lib/irb/locale.rb: support to print help message when OS locale is
|
* lib/irb/locale.rb: support to print help message when OS locale is
|
||||||
ja_JP.utf-8. [ruby-dev:26872]
|
ja_JP.utf-8. [ruby-dev:26872]
|
||||||
|
|
||||||
Mon Aug 29 01:43:05 2005 Tanaka Akira <akr@m17n.org>
|
Mon Aug 29 01:43:05 2005 Tanaka Akira <akr@m17n.org>
|
||||||
|
|
||||||
* lib/pathname.rb (Pathname#descend): new method.
|
* lib/pathname.rb (Pathname#descend): new method.
|
||||||
|
2
eval.c
2
eval.c
@ -5363,7 +5363,7 @@ rb_rescue2(b_proc, data1, r_proc, data2, va_alist)
|
|||||||
int state;
|
int state;
|
||||||
volatile VALUE result;
|
volatile VALUE result;
|
||||||
volatile VALUE e_info = ruby_errinfo;
|
volatile VALUE e_info = ruby_errinfo;
|
||||||
volatile int handle;
|
volatile int handle = Qfalse;
|
||||||
VALUE eclass;
|
VALUE eclass;
|
||||||
va_list args;
|
va_list args;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user