lua-users home
lua-l archive

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


Hi,

another problem/difference I found while testing Lua 5.4:
Loading modules on threads has now a very limited require-depth.
Requiring t1.lua which itself requires t2.lua and so on stops
after 5 levels with "C stack overflow". The number of frames when
the error happens is in my case 53 and so quite low.

In Lua 5.3 the limit was much higher (>100)

- Jörg