index
:
lua
master
v5-2
v5.3
v5.4
A mirror of https://github.com/lua/lua
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
Commit message (
Expand
)
Author
Age
Files
Lines
*
two bugs: invalid boolean values in constant table + too deep recursion
Roberto Ierusalimschy
2008-04-07
1
-3
/
+6
*
'table.sort' detects invalid order function before calling it
Roberto Ierusalimschy
2008-04-07
1
-3
/
+3
*
avoid constant folding for -0 (to avoid it colapsing to 0)
Roberto Ierusalimschy
2008-04-07
1
-3
/
+3
*
patches for some bugs
Roberto Ierusalimschy
2008-04-04
1
-7
/
+94
*
bugs: precheck must use check (instead of assert) and ensures that
Roberto Ierusalimschy
2008-04-02
1
-6
/
+5
*
SETLIST extra argument now is an "instruction" (OP_EXTRAARG)
Roberto Ierusalimschy
2008-04-02
6
-36
/
+68
*
corrected error message ("too many constants" -> "too many functions")
Roberto Ierusalimschy
2008-04-02
1
-2
/
+2
*
several bugs related to precompiled code
Roberto Ierusalimschy
2008-04-01
1
-0
/
+53
*
'coroutine.running' should work for the main thread too
Roberto Ierusalimschy
2008-02-25
1
-4
/
+4
*
userdata with finalizers are kept in a separated list
Roberto Ierusalimschy
2008-02-19
7
-147
/
+187
*
proxies must be created with a __gc field in their metatables to work
Roberto Ierusalimschy
2008-02-19
1
-2
/
+4
*
turn off optimizations when testing
Roberto Ierusalimschy
2008-02-15
1
-2
/
+2
*
bugs: lua_checkstack may have arithmetic overflow for large 'size' +
Roberto Ierusalimschy
2008-02-14
1
-0
/
+61
*
'table.concat' may get confused with too large limits
Roberto Ierusalimschy
2008-02-14
1
-9
/
+15
*
bug: unpack with maximum indices may crash due to arithmetic overflow
Roberto Ierusalimschy
2008-02-14
1
-4
/
+6
*
bug: lua_checkstack may have arithmetic overflow for large 'size'
Roberto Ierusalimschy
2008-02-14
1
-5
/
+4
*
micro-optimization: avoid one API call in 'read_chars'
Roberto Ierusalimschy
2008-02-12
1
-10
/
+11
*
remove of useless test in 'read_chars' (if n == 0 then the resulting
Roberto Ierusalimschy
2008-02-12
1
-2
/
+2
*
corrected name of 'Patrick Donnelly'
Roberto Ierusalimschy
2008-02-12
1
-1
/
+1
*
added assertions checking maximum number of upvalues
Roberto Ierusalimschy
2008-02-12
1
-2
/
+4
*
LUAI_MAXCSTACK must be smaller than -LUA_REGISTRYINDEX +
Roberto Ierusalimschy
2008-02-11
1
-1
/
+54
*
maximum C stack should reserve some values for pseudo-indices
Roberto Ierusalimschy
2008-02-11
1
-7
/
+15
*
bug: pseudo-indices should be linked to maximum C stack size
Roberto Ierusalimschy
2008-02-11
1
-4
/
+4
*
bug: auxresume should reserve stack space for boolean result
Roberto Ierusalimschy
2008-02-11
1
-2
/
+2
*
in 'testC', booleans should be represented by booean values
Roberto Ierusalimschy
2008-02-11
1
-11
/
+11
*
new instructions 'newtable' and 'checkstack' in 'testC'
Roberto Ierusalimschy
2008-02-11
1
-1
/
+8
*
more options for 'kinds' of Garbage Collection + more agressive
Roberto Ierusalimschy
2008-02-11
1
-29
/
+26
*
more options for 'kinds' of Garbage Collection
Roberto Ierusalimschy
2008-02-11
2
-4
/
+9
*
'ceillog2' now is exported (other modules may need it)
Roberto Ierusalimschy
2008-01-30
3
-24
/
+25
*
comment (LUA_GLOBALSINDEX does not need write barrier in lua_replace)
Roberto Ierusalimschy
2008-01-25
1
-1
/
+2
*
debug.sethook/gethook may overflow the thread's stack
Roberto Ierusalimschy
2008-01-21
1
-0
/
+46
*
bug: debug.sethook/gethook may overflow thread's stack
Roberto Ierusalimschy
2008-01-21
1
-12
/
+10
*
avoid calling "tail return" hooks if the hook itself turns off the event
Roberto Ierusalimschy
2008-01-18
1
-2
/
+2
*
small bug (see http://lua-users.org/lists/lua-l/2007-08/msg00350.html)
Roberto Ierusalimschy
2008-01-18
1
-5
/
+7
*
it seems useless trying to avoid this warning...
Roberto Ierusalimschy
2008-01-18
1
-2
/
+2
*
better definition for LUAI_MAXCSTACK
Roberto Ierusalimschy
2008-01-17
1
-2
/
+3
*
detail
Roberto Ierusalimschy
2008-01-17
1
-4
/
+3
*
luaL_tostring -> luaL_tolstring (more generic)
Roberto Ierusalimschy
2008-01-03
3
-10
/
+15
*
larger limit for MAXCSTACK (plus removing of some useless definitions)
Roberto Ierusalimschy
2008-01-02
1
-6
/
+2
*
detail ('name' of baselib is "_G")
Roberto Ierusalimschy
2008-01-02
1
-2
/
+2
*
option to use Sun compiler (on lhf account)
Roberto Ierusalimschy
2007-12-27
1
-5
/
+7
*
stand-alone interpreter shows incorrect error message when the
Roberto Ierusalimschy
2007-12-27
1
-0
/
+21
*
'lua_pushfstring' raises an error if called with invalid format
Roberto Ierusalimschy
2007-12-19
1
-6
/
+5
*
new function 'package.searchpath'
Roberto Ierusalimschy
2007-12-12
1
-11
/
+29
*
details
Roberto Ierusalimschy
2007-12-08
1
-10
/
+9
*
BUG: lua_setfenv may crash if called over an invalid object
Roberto Ierusalimschy
2007-11-28
2
-2
/
+23
*
details
Roberto Ierusalimschy
2007-11-28
1
-10
/
+11
*
BUG: table.remove removes last element of a table when given
Roberto Ierusalimschy
2007-11-26
2
-2
/
+28
*
detail
Roberto Ierusalimschy
2007-11-26
1
-3
/
+2
*
use prefix in extern names, even those in test files
Roberto Ierusalimschy
2007-11-12
2
-15
/
+15
[next]