2009/12/23 Yanrui Li <liyanrui.m2@gmail.com>
Hi Hans,

I modified the part of Chinese numeral conversion in core-con.lua script. The attachment is the patch. After many tests as the following I think the patch is right even though it looks dirty.

%%%%
\definefont[song][name:adobesongstdlight]\song
\starttext

\startluacode
local function test (cs)
    j = 1
    for i = 1, 9 do
        tex.print (j .. ': ' .. '\\chinesenumerals{' .. j .. '}\\par')
        j = j * 10 + 1
    end
    tex.print ('\\blank')
end


sorry, this function should be:

 local function test (cs)
    j = 1
    for i = 1, 9 do
        tex.print (j .. ': ' .. cs .. '{' .. j .. '}\\par')
        j = j * 10 + 1
    end
    tex.print ('\\blank')
end


--
Best regards,

Li Yanrui