diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-05-05 00:05:11 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-05-05 00:05:11 +0000 |
commit | 3abca796f4e5cd2162217d6a508b0667302a8cba (patch) | |
tree | 92457456e449c01a80d9dbaf543ffaef4c20803b /enc/trans | |
parent | 92c89f12fb25f19285b411717b4b37f46434e097 (diff) | |
download | bundler-3abca796f4e5cd2162217d6a508b0667302a8cba.tar.gz |
Fix: DON'T move in_p because before in_p is replaced by buffered data.
* transcode.c: NOMAP is now multibyte direct map.
* transcode.c: remove ASIS.
* transcode_data.h: ditto.
* tool/transcode-tb (ActionMap#generate_info): remove :asis.
* tool/transcode-tb (ActionMap#generate_info): add :nomap0.
* enc/trans/utf8_mac.trans: replace :asis by :nomap0.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23344 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enc/trans')
-rw-r--r-- | enc/trans/utf8_mac.trans | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/enc/trans/utf8_mac.trans b/enc/trans/utf8_mac.trans index b8c8f89889..5a12b59f03 100644 --- a/enc/trans/utf8_mac.trans +++ b/enc/trans/utf8_mac.trans @@ -6,13 +6,13 @@ transcode_tblgen("UTF-8", "UTF8-MAC", MAC_DECOMPOSE_TBL + [ ["{00-7F}", :nomap], - ["{c2-df}{80-bf}", :asis], - ["e0{a0-bf}{80-bf}", :asis], - ["{e1-ec}{80-bf}{80-bf}", :asis], - ["ed{80-9f}{80-bf}", :asis], - ["{ee-ef}{80-bf}{80-bf}", :asis], - ["f0{90-bf}{80-bf}{80-bf}", :asis], - ["{f1-f3}{80-bf}{80-bf}{80-bf}", :asis], + ["{c2-df}{80-bf}", :nomap0], + ["e0{a0-bf}{80-bf}", :nomap0], + ["{e1-ec}{80-bf}{80-bf}", :nomap0], + ["ed{80-9f}{80-bf}", :nomap0], + ["{ee-ef}{80-bf}{80-bf}", :nomap0], + ["f0{90-bf}{80-bf}{80-bf}", :nomap0], + ["{f1-f3}{80-bf}{80-bf}{80-bf}", :nomap0], ]) map = {} |