Perfect!
Thanks!!!
By the way I am using this solution/workaround:
split = function (str, pat)
local arr = {}
string.gsub(str, pat or "([^%s]+)", function (word)
table.insert(arr, word)
end)
return arr
end
splitlines = function (bigstr)
local arr = split(bigstr, "([^\n]*)\n?")
if _VERSION:sub(5) < "5.3" then
table.remove(arr)
end
return arr
end
Now dednat6 works with versions of lualatex that use Lua 5.3 - and I
think that the line with "_VERSION:sub(5)" screams "I AM A TEMPORARY
FIX" loud enough.
Cheers =) =),
Eduardo Ochs
http://angg.twu.net/dednat6.html