lua-users home
lua-l archive

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


debug.traceback ([message])

Returns a string with a traceback of the call stack. An optional
message string is appended at the beginning of the traceback. This
function is typically used with xpcall to produce better error
messages.

should read

An optional message string is prepended to the traceback message.


or

An optional message string is placed at the beginning of the traceback.

DB