19 Apr
2008
19 Apr
'08
9:41 p.m.
Wolfgang Werners-Lucchini wrote:
\startlua local function finder(name, mode, ftype) if mode=="w" then return name else return kpse.find_file(name,ftype) end end
Jein!
Try this, a little more elaborate, version of finder: local function finder(name, mode, ftype) local found if mode=="w" then found = name else found = kpse.find_file(name,ftype) end print("MPlib finder: " .. name .. " -> " .. found) return found end maybe that will give a clue. Best wishes, Taco