Skip to content

Tags: scratchminer/lua54

Tags

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

v5.4.0

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

v5.4-beta

Toggle v5.4-beta's commit message
Version 5.4 beta 

v5.4-alpha

Toggle v5.4-alpha's commit message
Alpha release for Lua 5.4 

v5.3.5

Toggle v5.3.5's commit message
Lua version 5.3.5 

v5.4-w2

Toggle v5.4-w2's 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.