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 --- io.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'io.c') 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