cortav  Diff

Differences From Artifact [cf6aee3c65]:

To Artifact [ccdca620ac]:


151
152
153
154
155
156
157
158

local tab = {}
local top = 1
for k,v in pairs(ranges) do
	tab[top] = string.format('{0x%x,0x%x,%u}',table.unpack(v))
	top = top + 1
end
io.stdout:write(string.format(tpl, table.concat(tab,',\n')))







|
151
152
153
154
155
156
157
158

local tab = {}
local top = 1
for k,v in pairs(ranges) do
	tab[top] = string.format('{0x%x,0x%x,%u}',table.unpack(v))
	top = top + 1
end
io.stdout:write(string.dump(load(string.format(tpl, table.concat(tab,',\n')))))