diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-14 10:53:53 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-08-14 10:53:53 +0000 |
commit | 14c3aa52aeff4fed170b3dbe8666aaa851b654d2 (patch) | |
tree | 6f2a895bac75e382b9d4e71e1bb09f92cdafbc4b /inits.c | |
parent | 9cdeae9dad9f8ac8fe50b6b6f01ecd76f21f5e6b (diff) | |
download | ruby-14c3aa52aeff4fed170b3dbe8666aaa851b654d2.tar.gz |
* proc.c (Init_Proc), eval.c (Init_eval), eval_intern.h: move
init place of exception_error.
* inits.c: ditto.
* eval.c (Init_eval): set exception_error#throwed_state as TAG_FATAL.
[ruby-dev:31407]
* bootstraptest/test_exception.rb: add a test for above.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@12930 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'inits.c')
-rw-r--r-- | inits.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -63,10 +63,10 @@ rb_call_inits() Init_Comparable(); Init_Enumerable(); Init_Precision(); + Init_Exception(); Init_eval(); Init_jump(); Init_String(); - Init_Exception(); Init_Numeric(); Init_Bignum(); Init_syserr(); |