Skip to content

Tags: lua/lua

Tags

v5.5.1

Toggle v5.5.1's commit message
Small change in scope of variables in repeat-until

A close instruction is still inside the scope of the variables it is
closing. The extra close in a repeat-until (to close variables before
repeating the loop) was being coded outside that scope.

v5.5.0

Toggle v5.5.0's commit message
GC checks stack space before running finalizer

If the stack does not have some minimum available space, the GC defers
calling a finalizer until the next cycle. That avoids errors while
running a finalizer that the programmer cannot control.

rc

Toggle rc's commit message
In luaB_close, running coroutines do not go to default

This should had been corrected in commit fd89702.

v5.5-beta

Toggle v5.5-beta's commit message
Warning in loslib.c (signed-unsigned comparison)

=list

Toggle =list's commit message
Application name for 'readline' is "lua", not "Lua"

v5.4.8

Toggle v5.4.8's commit message
New release number, updated copyright year

v5.4.7

Toggle v5.4.7's commit message
'lua.h' back to redundancy in version definitions

Several tools inspect 'lua.h' to extract version information, and
they assume the file will have some specific format.

v5.4.6

Toggle v5.4.6's commit message
"Emergency" new version 5.4.6

'lua_resetthread' is back to its original signature, to avoid
incompatibilities in the ABI between releases of the same version.
New function 'lua_closethread' added with the "correct" signature.

v5.4.5

Toggle v5.4.5's commit message
Details

Typos in comments and details in the manual.

v5.4.4

Toggle v5.4.4's commit message
Explanation of borders in the manual

The explanation includes the limit case of maxinteger being a border.
It also avoids the term "natural", which might include large floats
with natural values.