summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authoryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-28 16:11:27 +0000
committeryugui <yugui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2009-10-28 16:11:27 +0000
commit79ec15d4295e0807ae2eb42e1fcd097ba1a2664a (patch)
tree5cb9b3663f1f8bffc52296d2b777ea1501b75a3a /include
parent06bcd6884fe9783d6f1f7e6988bb5d9e21320929 (diff)
downloadruby-79ec15d4295e0807ae2eb42e1fcd097ba1a2664a.tar.gz
ruby-79ec15d4295e0807ae2eb42e1fcd097ba1a2664a.tar.xz
ruby-79ec15d4295e0807ae2eb42e1fcd097ba1a2664a.zip
merges r24684 from trunk into ruby_1_9_1.
-- * 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/branches/ruby_1_9_1@25547 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r--include/ruby/intern.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ruby/intern.h b/include/ruby/intern.h
index 644423038..1bcadb195 100644
--- a/include/ruby/intern.h
+++ b/include/ruby/intern.h
@@ -259,6 +259,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