mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* eval.c (Init_eval): typo fixed in r17833.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17854 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
854d955393
commit
1aa2d2976f
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Thu Jul 3 21:06:16 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* eval.c (Init_eval): typo fixed in r17833.
|
||||
|
||||
Thu Jul 3 19:44:44 2008 Masaki Suketa <masaki.suketa@nifty.ne.jp>
|
||||
|
||||
* ext/win32ole/win32ole.c (Init_win32ole): remove duplicate line.
|
||||
|
|
2
eval.c
2
eval.c
|
@ -1201,7 +1201,7 @@ Init_eval(void)
|
|||
|
||||
rb_define_virtual_variable("$SAFE", safe_getter, safe_setter);
|
||||
|
||||
exception_error = rb_exc_new2(rb_eFatal,
|
||||
exception_error = rb_exc_new3(rb_eFatal,
|
||||
rb_obj_freeze(rb_str_new2("exception reentered")));
|
||||
rb_ivar_set(exception_error, idThrowState, INT2FIX(TAG_FATAL));
|
||||
OBJ_TAINT(exception_error);
|
||||
|
|
Loading…
Reference in a new issue