1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* tool/transcode-tb (ActionMap#each_firstbyte):

if :asis collides other mappings, use another.

* tool/transcode-tb (ActionMap#generate_info):
  add :asis for ASIS.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23295 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2009-04-26 13:25:09 +00:00
parent 0881a39acd
commit b6285a01fb
2 changed files with 14 additions and 1 deletions

View file

@ -1,3 +1,11 @@
Sun Apr 26 22:17:02 2009 NARUSE, Yui <naruse@ruby-lang.org>
* tool/transcode-tb (ActionMap#each_firstbyte):
if :asis collides other mappings, use another.
* tool/transcode-tb (ActionMap#generate_info):
add :asis for ASIS.
Sun Apr 26 21:59:43 2009 NARUSE, Yui <naruse@ruby-lang.org>
* transcode.c (ASIS): added for multi byte direct map.

View file

@ -237,7 +237,10 @@ class ActionMap
else
ss.each_firstbyte {|byte, rest|
h[byte] ||= {}
if h[byte][rest]
if h[byte][rest].nil?
elsif action == :asis
next
elsif h[byte][rest] != :asis
raise "ambiguous %s or %s (%02X/%s)" % [h[byte][rest], action, byte, rest]
end
h[byte][rest] = action
@ -316,6 +319,8 @@ class ActionMap
case info
when :nomap
"NOMAP"
when :asis
"ASIS"
when :undef
"UNDEF"
when :invalid