mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* 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
This commit is contained in:
parent
ae9af4d333
commit
d1429c3cc6
3 changed files with 20 additions and 1 deletions
|
@ -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] }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue