Skip to content

Tags: seakingii/lua

Tags

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.

v5.3.4

Toggle v5.3.4's commit message
small updates