diff options
author | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-22 05:38:33 +0000 |
---|---|---|
committer | akr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-12-22 05:38:33 +0000 |
commit | ab385dfdf7be4cd8b4f190c72ad951eaa271b5d3 (patch) | |
tree | 1bf81d981af9c27a633b09e7e2d8feb895060b3b /encoding.c | |
parent | cfb106aa03ba13845aa2f8abe953684c7dd9b0f1 (diff) | |
download | ruby-ab385dfdf7be4cd8b4f190c72ad951eaa271b5d3.tar.gz ruby-ab385dfdf7be4cd8b4f190c72ad951eaa271b5d3.tar.xz ruby-ab385dfdf7be4cd8b4f190c72ad951eaa271b5d3.zip |
* regenc.c (onigenc_ascii_is_code_ctype): moved from enc/ascii.c.
* regenc.h (onigenc_ascii_is_code_ctype): declared.
* enc/ascii.c: use onigenc_ascii_is_code_ctype.
* enc/us_ascii.c: new file for US-ASCII.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@14463 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'encoding.c')
-rw-r--r-- | encoding.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/encoding.c b/encoding.c index 457d940dd..5372076a1 100644 --- a/encoding.c +++ b/encoding.c @@ -301,7 +301,6 @@ rb_enc_init(void) #undef ENC_REGISTER enc_alias("ASCII", rb_enc_name(ONIG_ENCODING_ASCII)); enc_alias("BINARY", rb_enc_name(ONIG_ENCODING_ASCII)); - enc_alias("US-ASCII", rb_enc_name(ONIG_ENCODING_ASCII)); /* will be defined separately in future. */ enc_alias("SJIS", rb_enc_name(ONIG_ENCODING_SJIS)); } |