X-Git-Url: http://git.osdn.jp/view?a=blobdiff_plain;f=src%2Fltj-compat.lua;h=6e1da777226846e5cef9f7e0cfe3ba0a7975f097;hb=c35bc9236b8c249d3089a824fe197d0d1cde7e78;hp=d72cce3313c36754b76d3dfe481ec62ef1b40650;hpb=6e672f2c6c4c966166ec272a021b0f3afa93bee0;p=luatex-ja%2Fluatexja.git diff --git a/src/ltj-compat.lua b/src/ltj-compat.lua index d72cce3..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 + 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)