Skip to content

Tags: lua/lua

Tags

v5.4.4

Toggle 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 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 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 commit message
Merge branch 'master' of https://github.com/lua/lua
      Adding file README.md to local repository.

v5.3.6

Toggle 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'.)

v5.4.0

Toggle commit message
Details
      Added as incompatibility, in the manual, the extra return of 'io.lines'.

v5.4-beta

Toggle commit message
Version 5.4 beta
      

v5.4-alpha

Toggle commit message
Alpha release for Lua 5.4
      

v5.3.5

Toggle commit message
Lua version 5.3.5
      

v5.4-w2

Toggle commit message
Version 5.4-w2, first version for development using GIT.
      From this version on, this GIT is the official repository of Lua. Previous
versions are translations from the RCS used previously, and may not be
accurate.