[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Lua 5.1.5 (rc1) now available
- From: Roberto Ierusalimschy <roberto@...>
- Date: Fri, 10 Feb 2012 19:51:41 -0200
> 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