aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-11 03:32:08 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-09-11 03:32:08 +0000
commit6329215dbfcda2e517981367a783ce183b237367 (patch)
treeb6b3a7315ef5bcf94c6e17809232bd38f3e454f5
parent72e1df781be8a94e2df5b64a1d4ab3fce7573653 (diff)
downloadruby-6329215dbfcda2e517981367a783ce183b237367.tar.gz
* 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
-rw-r--r--ChangeLog6
-rw-r--r--include/ruby/intern.h2
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 <nobu@ruby-lang.org>
+
+ * 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 <akr@fsij.org>
* 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;