Skip to content

Tags: tiacsys/lua

Tags

=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.

v5.4.3

Toggle v5.4.3's commit message
Added option LUA_NOBUILTIN

This option allows external code to avoid the use of gcc builtin macro
'__builtin_expect' in the Lua API.

v5.4.2

Toggle v5.4.2's commit message
Optimization for 'n^2'

Squares are much more common than other exponentiations, and 'n*n' is
much more efficient than 'pow'.

v5.4.1

Toggle v5.4.1's commit message
Merge branch 'master' of https://github.com/lua/lua

Adding file README.md to local repository.

v5.3.6

Toggle v5.3.6's commit message
Fixed bug of long strings in binary chunks

When "undumping" a long string, the function 'LoadVector' can call the
reader function, which can run the garbage collector, which can collect
the string being read. So, the string must be anchored during the call
to 'LoadVector'. (This commit also fixes the identation in 'l_alloc'.)