From d1429c3cc6405a23b10c317c0ffdac96c9a7e61f Mon Sep 17 00:00:00 2001 From: akr Date: Sun, 31 Aug 2008 07:37:10 +0000 Subject: * enc/trans/single_byte.trans (us_ascii_map): don't define 8bit bytes. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18982 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- enc/trans/single_byte.trans | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'enc/trans') diff --git a/enc/trans/single_byte.trans b/enc/trans/single_byte.trans index 8cbf474eb5..8c9565c605 100644 --- a/enc/trans/single_byte.trans +++ b/enc/trans/single_byte.trans @@ -1,7 +1,7 @@ #include "transcode_data.h" <% - us_ascii_map = [["{00-7f}", :nomap], ["{80-ff}", :undef]] + us_ascii_map = [["{00-7f}", :nomap]] ISO_8859_1_TO_UCS_TBL = (0x80..0xff).map {|c| ["%02X" % c, c] } CONTROL1_TO_UCS_TBL = (0x80..0x9f).map {|c| ["%02X" % c, c] } -- cgit v1.2.3