lua-users home
lua-l archive

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


For this code:
> debug.sethook(function(...) print(...) end, "l")
> if false then
>     goto EXIT
>     A = 1
> end
> ::EXIT::

The output is:
line    3
line    6

I think it should be
line    2
line    6

I got the same result in both lua5.4.1 and lua5.3.6.

-- actboy168