X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=src%2Fltj-compat.lua;h=6e1da777226846e5cef9f7e0cfe3ba0a7975f097;hb=80bbcf52bf096105cf1797a4422a38d400b3fa05;hp=c21e2616219c0078c407254fa8085bd55a647317;hpb=880636d81e9819b31dec8a5f897bbfaf1732d18b;p=luatex-ja%2Fluatexja.git diff --git a/src/ltj-compat.lua b/src/ltj-compat.lua index c21e261..6e1da77 100644 --- a/src/ltj-compat.lua +++ b/src/ltj-compat.lua @@ -31,35 +31,56 @@ end -- \ucs: 単なる identity function from_ucs(i) + if type(i)~='number' then + ltjb.package_error('luatexja', + "invalid character code (".. tostring(i) .. ")", + "I'm going to use 0 instead of that illegal character code.") + i=0 + end tex.write(i) end --- \kuten: 面区点 (それぞれで16進2桁を使用)=> Unicode 符号位置 +-- \kuten: 面区点 (それぞれで16進2桁を使用)=> Unicharacter code 符号位置 function from_kuten(i) - if not i then i=0 end - tex.write(tostring(luatexja.jisx0208.table_jisx0208_uptex[i]) or '0') + if type(i)~='number' then + ltjb.package_error('luatexja', + "invalid character code (".. tostring(i) .. ")", + "I'm going to use 0 instead of that illegal character code.") + i=0 + end + tex.write(tostring(luatexja.jisx0208.table_jisx0208_uptex[i] or 0)) end --- \euc: EUC-JP による符号位置 => Unicode 符号位置 +-- \euc: EUC-JP による符号位置 => Unicharacter code 符号位置 function from_euc(i) - if not i then i=0 + if type(i)~='number' then + ltjb.package_error('luatexja', + "invalid character code (".. tostring(i) .. ")", + "I'm going to use 0 instead of that illegal character code.") + i=0 elseif i>=0x10000 or i<0xa0a0 then i=0 end from_kuten(i-0xa0a0) end --- \jis: ISO-2022-JP による符号位置 => Unicode 符号位置 +-- \jis: ISO-2022-JP による符号位置 => Unicharacter code 符号位置 function from_jis(i) - if (not i) or i>=0x10000 or i<0 then + if (type(i)~='number') or i>=0x10000 or i<0 then + ltjb.package_error('luatexja', + "invalid character code (".. tostring(i) .. ")", + "I'm going to use 0 instead of that illegal character code.") i=0 end from_kuten(i-0x2020) end --- \sjis: Shift_JIS による符号位置 => Unicode 符号位置 +-- \sjis: Shift_JIS による符号位置 => Unicharacter code 符号位置 function from_sjis(i) - if (not i) or i>=0x10000 or i<0 then + if (type(i)~='number') or i>=0x10000 or i<0 then + ltjb.package_error('luatexja', + "invalid character code (".. tostring(i) .. ")", + "I'm going to use 0 instead of that illegal character code.") tex.write('0'); return end local c2 = math.floor(i/256)