|
Mike Pall wrote:
Hi, Eero Pajarre wrote:The problem is in line local w = debug.getinfo(2, "S").what where debug.getinfo returns nilFix: local d = debug.getinfo(2, "S") local w = d and d.what or "C"
Thanks, this seems to solve my problem, and I have not noticed any side effects. Eero