diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-08-27 09:31:11 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-08-27 09:31:11 +0000 |
commit | 4cb7e542e57510fed7a432654aee33faafce2c51 (patch) | |
tree | 560352f8441f6e97af74f3960fb3b33813fbfc01 /include/ruby/intern.h | |
parent | 6f2c904544abc8e6f8762a1fed4d462966bdf374 (diff) | |
download | ruby-4cb7e542e57510fed7a432654aee33faafce2c51.tar.gz ruby-4cb7e542e57510fed7a432654aee33faafce2c51.tar.xz ruby-4cb7e542e57510fed7a432654aee33faafce2c51.zip |
* vm_method.c (rb_remove_method_id): exported.
* numeric.c (num_sadded): fix for non-ascii method name.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@24684 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/intern.h')
-rw-r--r-- | include/ruby/intern.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ruby/intern.h b/include/ruby/intern.h index 46d3aeae8..9ebf5d6c5 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -263,6 +263,7 @@ NORETURN(void rb_exc_fatal(VALUE)); VALUE rb_f_exit(int,VALUE*); VALUE rb_f_abort(int,VALUE*); void rb_remove_method(VALUE, const char*); +void rb_remove_method_id(VALUE, ID); #define rb_disable_super(klass, name) ((void)0) #define rb_enable_super(klass, name) ((void)0) #define HAVE_RB_DEFINE_ALLOC_FUNC 1 |