ruby-changes:9524
From: yugui <ko1@a...>
Date: Fri, 26 Dec 2008 14:54:59 +0900 (JST)
Subject: [ruby-changes:9524] Ruby:r21063 (ruby_1_9_1): merges r21044 from trunk into ruby_1_9_1.
yugui 2008-12-26 14:54:27 +0900 (Fri, 26 Dec 2008) New Revision: 21063 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=21063 Log: merges r21044 from trunk into ruby_1_9_1. * transcode.c (sym_ignore): remove useless symbol. Modified files: branches/ruby_1_9_1/ChangeLog branches/ruby_1_9_1/transcode.c Index: ruby_1_9_1/ChangeLog =================================================================== --- ruby_1_9_1/ChangeLog (revision 21062) +++ ruby_1_9_1/ChangeLog (revision 21063) @@ -1,3 +1,7 @@ +Thu Dec 25 19:35:51 2008 NARUSE, Yui <naruse@r...> + + * transcode.c (sym_ignore): remove useless symbol. + Mon Dec 22 21:31:11 2008 Tanaka Akira <akr@f...> * numeric.c (int_ord): Integer#ord implemented. Index: ruby_1_9_1/transcode.c =================================================================== --- ruby_1_9_1/transcode.c (revision 21062) +++ ruby_1_9_1/transcode.c (revision 21063) @@ -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/