Differences From Artifact [cf6aee3c65]:
- File tool/ucs.lua — part of check-in [e51980e07a] at 2021-12-27 05:51:11 on branch trunk — more tweaks, fixes, and additions than i can keep track of. major additions to documentation. spiffed up html renderer's footnotes and TOC dramatically (user: lexi, size: 4123) [annotate] [blame] [check-ins using]
- File tools/ucs.lua — part of check-in [d1b7d2fd5f] at 2021-12-26 17:49:50 on branch trunk — get math parser working (user: lexi, size: 4123) [annotate] [blame] [check-ins using]
To Artifact [ccdca620ac]:
- File tool/ucs.lua — part of check-in [f673b2abfe] at 2022-12-14 08:43:47 on branch trunk — add workaround for broken luac (user: lexi, size: 4143) [annotate] [blame] [check-ins using]
151 151 152 152 local tab = {} 153 153 local top = 1 154 154 for k,v in pairs(ranges) do 155 155 tab[top] = string.format('{0x%x,0x%x,%u}',table.unpack(v)) 156 156 top = top + 1 157 157 end 158 -io.stdout:write(string.format(tpl, table.concat(tab,',\n'))) 158 +io.stdout:write(string.dump(load(string.format(tpl, table.concat(tab,',\n')))))