ruby-changes:9504
From: naruse <ko1@a...>
Date: Thu, 25 Dec 2008 19:43:49 +0900 (JST)
Subject: [ruby-changes:9504] Ruby:r21044 (trunk): * transcode.c (sym_ignore): remove useless symbol.
naruse 2008-12-25 19:43:35 +0900 (Thu, 25 Dec 2008) New Revision: 21044 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=21044 Log: * transcode.c (sym_ignore): remove useless symbol. Modified files: trunk/ChangeLog trunk/transcode.c Index: ChangeLog =================================================================== --- ChangeLog (revision 21043) +++ ChangeLog (revision 21044) @@ -1,3 +1,7 @@ +Thu Dec 25 19:35:51 2008 NARUSE, Yui <naruse@r...> + + * transcode.c (sym_ignore): remove useless symbol. + Thu Dec 25 18:36:04 2008 Tanaka Akira <akr@f...> * io.c (pipe_close): removed. Index: transcode.c =================================================================== --- transcode.c (revision 21043) +++ transcode.c (revision 21044) @@ -20,7 +20,7 @@ VALUE rb_cEncodingConverter; -static VALUE sym_invalid, sym_undef, sym_ignore, sym_replace; +static VALUE sym_invalid, sym_undef, sym_replace; static VALUE sym_xml, sym_text, sym_attr; static VALUE sym_universal_newline; static VALUE sym_crlf_newline; @@ -4024,7 +4024,6 @@ sym_invalid = ID2SYM(rb_intern("invalid")); sym_undef = ID2SYM(rb_intern("undef")); - sym_ignore = ID2SYM(rb_intern("ignore")); sym_replace = ID2SYM(rb_intern("replace")); sym_xml = ID2SYM(rb_intern("xml")); sym_text = ID2SYM(rb_intern("text")); -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/