diff options
| author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-25 10:43:35 +0000 |
|---|---|---|
| committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-12-25 10:43:35 +0000 |
| commit | df4699320d24ee4d405c0561a62b500649fc181b (patch) | |
| tree | 1e785fc910a3c3d5fc8004e4928d54c90a009427 | |
| parent | bb4329becdce611519c8e6486661969ede17f704 (diff) | |
* transcode.c (sym_ignore): remove useless symbol.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@21044 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | transcode.c | 3 |
2 files changed, 5 insertions, 2 deletions
@@ -1,3 +1,7 @@ +Thu Dec 25 19:35:51 2008 NARUSE, Yui <naruse@ruby-lang.org> + + * transcode.c (sym_ignore): remove useless symbol. + Thu Dec 25 18:36:04 2008 Tanaka Akira <akr@fsij.org> * io.c (pipe_close): removed. diff --git a/transcode.c b/transcode.c index 7b8c6dbd58..e5538a0871 100644 --- a/transcode.c +++ b/transcode.c @@ -20,7 +20,7 @@ VALUE rb_eConverterNotFoundError; 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 @@ Init_transcode(void) 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")); |
