cortav  Diff

Differences From Artifact [cf6aee3c65]:

To Artifact [ccdca620ac]:


   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')))))