diff options
author | Hans Hagen <pragma@wxs.nl> | 2010-09-27 11:54:00 +0200 |
---|---|---|
committer | Hans Hagen <pragma@wxs.nl> | 2010-09-27 11:54:00 +0200 |
commit | 7635c09a0cab08e0c03efced85b6b8ffc0b508c1 (patch) | |
tree | 36f1af3165148b9671f8500e57c99eadeca3f240 /tex/context/base/char-ini.lua | |
parent | 1eb36c19101fc0bb7a9d2257413fb072118e47d9 (diff) | |
download | context-7635c09a0cab08e0c03efced85b6b8ffc0b508c1.tar.gz |
beta 2010.09.27 11:54
Diffstat (limited to 'tex/context/base/char-ini.lua')
-rw-r--r-- | tex/context/base/char-ini.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tex/context/base/char-ini.lua b/tex/context/base/char-ini.lua index a16178bf2..10df66e47 100644 --- a/tex/context/base/char-ini.lua +++ b/tex/context/base/char-ini.lua @@ -814,9 +814,10 @@ setmetatable(specialchars, { __index = function(t,u) if s then local t = { } for i=2,#s do - local c = data[s[i]] + local si = s[i] + local c = data[si] if is_letter[c.category] then - t[#t+1] = c + t[#t+1] = utfchar(si) end end c = concat(t) |