lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


> I think I have found a bug in the debugging interface to Lua. [...]

I think you are right. Can you try the following correction?

lvm.c:82:
<     luaD_lineHook(L, base-2, newline, linehook);
---
>     luaD_lineHook(L, base-1, newline, linehook);

-- Roberto