From ce8a930f5332742478982c2ef5a8a0b255576bf9 Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 18 Aug 2008 13:42:09 +0000 Subject: * io.c (id_encode): removed. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@18693 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ io.c | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index b5b580646..3336f3fd3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Aug 18 22:41:46 2008 Tanaka Akira + + * io.c (id_encode): removed. + Mon Aug 18 22:30:07 2008 Tanaka Akira * io.c (make_writeconv): if enc and enc2 is set, convert diff --git a/io.c b/io.c index 9eb01c186..33b104527 100644 --- a/io.c +++ b/io.c @@ -123,7 +123,7 @@ VALUE rb_default_rs; static VALUE argf; -static ID id_write, id_read, id_getc, id_flush, id_encode, id_readpartial; +static ID id_write, id_read, id_getc, id_flush, id_readpartial; static VALUE sym_mode, sym_perm, sym_extenc, sym_intenc, sym_encoding, sym_open_args; struct timeval rb_time_interval(VALUE); @@ -7924,7 +7924,6 @@ Init_IO(void) id_read = rb_intern("read"); id_getc = rb_intern("getc"); id_flush = rb_intern("flush"); - id_encode = rb_intern("encode"); id_readpartial = rb_intern("readpartial"); rb_define_global_function("syscall", rb_f_syscall, -1); -- cgit