[前][次][番号順一覧][スレッド一覧]

ruby-changes:7174

From: akr <ko1@a...>
Date: Mon, 18 Aug 2008 22:42:28 +0900 (JST)
Subject: [ruby-changes:7174] Ruby:r18693 (trunk): * io.c (id_encode): removed.

akr	2008-08-18 22:42:09 +0900 (Mon, 18 Aug 2008)

  New Revision: 18693

  http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=18693

  Log:
    * io.c (id_encode): removed.

  Modified files:
    trunk/ChangeLog
    trunk/io.c

Index: ChangeLog
===================================================================
--- ChangeLog	(revision 18692)
+++ ChangeLog	(revision 18693)
@@ -1,3 +1,7 @@
+Mon Aug 18 22:41:46 2008  Tanaka Akira  <akr@f...>
+
+	* io.c (id_encode): removed.
+
 Mon Aug 18 22:30:07 2008  Tanaka Akira  <akr@f...>
 
 	* io.c (make_writeconv): if enc and enc2 is set, convert
Index: io.c
===================================================================
--- io.c	(revision 18692)
+++ io.c	(revision 18693)
@@ -123,7 +123,7 @@
 
 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 @@
     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);

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]