diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-17 02:27:38 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-11-17 02:27:38 +0000 |
commit | 288ceaeec2077d06df3ba46bca97960f76f283e1 (patch) | |
tree | 8593a93244c96b098dd6611ee7e4dfe2c7ba9957 /error.c | |
parent | 3ad741f132133bb542a84a01d8e7644fc4b51e4c (diff) | |
download | ruby-288ceaeec2077d06df3ba46bca97960f76f283e1.tar.gz |
* re.c (rb_reg_initialize_m): should raise exception instead of
compile error. [ruby-core:03755]
* string.c (rb_str_splice): move rb_str_modify() after
StringValue(), which may alter the receiver. [ruby-dev:24878]
* error.c (rb_error_frozen): now raise RuntimeError instead of
TypeError.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7294 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'error.c')
-rw-r--r-- | error.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1208,7 +1208,7 @@ void rb_error_frozen(what) const char *what; { - rb_raise(rb_eTypeError, "can't modify frozen %s", what); + rb_raise(rb_eRuntimeError, "can't modify frozen %s", what); } void |