From 6329215dbfcda2e517981367a783ce183b237367 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 11 Sep 2010 03:32:08 +0000 Subject: [PATCH] * include/ruby/intern.h (rb_set_kcode, rb_get_kcode): removed zombie prototype declarations. a patch from Eric Hodel at [ruby-core:32305]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29223 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 6 ++++++ include/ruby/intern.h | 2 -- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index f2aa181e14..e6b1f218b0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Sat Sep 11 12:32:05 2010 Nobuyoshi Nakada + + * include/ruby/intern.h (rb_set_kcode, rb_get_kcode): removed + zombie prototype declarations. a patch from Eric Hodel + at [ruby-core:32305]. + Sat Sep 11 06:53:12 2010 Tanaka Akira * ext/pathname/pathname.c (path_symlink_p): Pathname#symlink? diff --git a/include/ruby/intern.h b/include/ruby/intern.h index 2c79d700de..3f6f4a2743 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -579,8 +579,6 @@ VALUE rb_reg_init_str(VALUE re, VALUE s, int options); VALUE rb_reg_match(VALUE, VALUE); VALUE rb_reg_match2(VALUE); int rb_reg_options(VALUE); -void rb_set_kcode(const char*); -const char* rb_get_kcode(void); /* ruby.c */ #define rb_argv rb_get_argv() RUBY_EXTERN VALUE rb_argv0;