lua-users home
lua-l archive

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


> My bad. I missremembered my testcase:
> 
> -----
> local c = coroutine.create( function() coroutine.yield() end )
> coroutine.resume(c)
> print( debug.traceback(c,nil,1) )
> -----
> 
> Output:
> -----
> nil
> -----
> 
> Expected:
> -----
> stack traceback:
>         a.lua:1: in function <a.lua:1>
> -----

The manual does not say anything about "message" not being a string.

-- Roberto