lua-users home
lua-l archive

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


	Hi,

> Is there any way to get call stack using lua_getstack and lua_getinfo
> in case of a run-time error?
	Try debug.traceback.  It is implemented in C:
file src/lib/ldblic.c, function errorfb.

	Tomas