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
path:
root
/
ldo.h
(
unfollow
)
Commit message (
Expand
)
Author
Files
Lines
2012-05-14
macro 'checkGC' takes care of setting 'top' to limit stack live values
Roberto Ierusalimschy
1
-16
/
+9
2012-05-14
details (header comments)
Roberto Ierusalimschy
2
-3
/
+4
2012-05-11
test for whether collector is running moved from function to
Roberto Ierusalimschy
3
-16
/
+8
2012-05-11
definition for 'LUAI_MAXSHORTLEN' moved to luaconf.h (too important)
Roberto Ierusalimschy
2
-13
/
+9
2012-05-11
better(?) handling of '#define's for IEEE-related tricks + avoid using
Roberto Ierusalimschy
3
-66
/
+82
2012-05-11
bug: wrong handling of 'nCcalls' in coroutines
Roberto Ierusalimschy
1
-6
/
+35
2012-05-11
useless parameter in macro 'luai_makeseed'
Roberto Ierusalimschy
1
-2
/
+2
2012-05-08
no more 'Proto' objects on the stack. Protos are anchored on outer
Roberto Ierusalimschy
11
-90
/
+103
2012-04-27
wrong error message when 'coroutine.create' or 'coroutine.wrap' are
Roberto Ierusalimschy
1
-2
/
+3
2012-04-27
small bug: a reader function should not modify the Lua stack
Roberto Ierusalimschy
1
-1
/
+2
2012-04-26
bug: wrong handling of 'nCcalls' in coroutines
Roberto Ierusalimschy
1
-5
/
+4
2012-04-26
detail (separate code to create 'searchers' table into a new function)
Roberto Ierusalimschy
1
-12
/
+15
2012-04-20
primaryexp -> suffixedexp; prefixexp -> primaryexp + more 'syntactical'
Roberto Ierusalimschy
1
-15
/
+17
2012-04-20
details (using lua_setglobal/lua_getglobal instead of explicit
Roberto Ierusalimschy
2
-15
/
+8
2012-04-20
release 5.2.1
Roberto Ierusalimschy
1
-4
/
+4
2012-04-20
different scheme to check arguments to '%d', '%x', etc. Old scheme
Roberto Ierusalimschy
1
-8
/
+9
2012-04-12
Finalizers may call functions from a dynamic library after
Roberto Ierusalimschy
1
-2
/
+102
2012-04-11
bug: C libraries must be unloaded after all other finalizers have run,
Roberto Ierusalimschy
1
-33
/
+41
2012-04-03
'if' to avoid empty 'memcpy' (may be expensive)
Roberto Ierusalimschy
1
-2
/
+4
2012-03-28
string hash may not use all bytes (but this is configurable now) +
Roberto Ierusalimschy
1
-5
/
+28
2012-03-28
definition for 'LUA_MAXSHORTLEN' moved to 'lstring.c' (used only there)
Roberto Ierusalimschy
1
-10
/
+1
2012-03-19
error function can be 'l_noret'
Roberto Ierusalimschy
1
-2
/
+2
2012-03-19
cleaner code (avoids loop with empty body)
Roberto Ierusalimschy
1
-3
/
+5
2012-03-18
'luaL_checkversion' called by 'luaL_setfuncs'
Roberto Ierusalimschy
1
-1
/
+2
2012-02-01
random seed used in the hash of all strings to avoid intentional
Roberto Ierusalimschy
5
-12
/
+49
2012-01-25
first implementation of long strings
Roberto Ierusalimschy
9
-47
/
+144
2012-01-23
field 'reserved' -> 'extra' (may be used for other purposes too)
Roberto Ierusalimschy
3
-7
/
+7
2012-01-23
'eqstr' -> 'luaS_eqstr'
Roberto Ierusalimschy
3
-13
/
+13
2012-01-23
new macro 'isreserved' + 'eqstr' -> 'luaS_eqstr' (may be a function)
Roberto Ierusalimschy
1
-4
/
+10
2012-01-23
"default: lua_assert(0)" in switches helps debugging + uses
Roberto Ierusalimschy
2
-4
/
+6
2012-01-23
Lua never uses Ã'assert' (it is always 'lua_assert')
Roberto Ierusalimschy
1
-2
/
+2
2012-01-23
documentation comment (small correction about strings being
Roberto Ierusalimschy
1
-3
/
+5
2012-01-20
new macro 'checktype'
Roberto Ierusalimschy
1
-2
/
+8
2012-01-20
object tag keeps variant bits too -> no need for 'isC' field in
Roberto Ierusalimschy
7
-67
/
+88
2012-01-20
bug: Lexical gets confused with some combination of arithmetic
Roberto Ierusalimschy
1
-5
/
+16
2012-01-20
BUG: memory hoarding when creating Lua hooks for coroutines
Roberto Ierusalimschy
1
-2
/
+125
2012-01-19
BUG: coroutine hooks were not collected together with coroutine
Roberto Ierusalimschy
1
-7
/
+14
2011-12-12
new way to handle -E option (write a mark in the registry to avoid
v5.2.0
Roberto Ierusalimschy
2
-18
/
+22
2011-12-08
removed redundant definition for FILEHANDLE
Roberto Ierusalimschy
1
-4
/
+1
2011-12-07
avoid a few warnings (casts)
Roberto Ierusalimschy
1
-3
/
+3
2011-12-07
cast from 'bool' to 'int' (for C++)
Roberto Ierusalimschy
1
-2
/
+2
2011-12-06
no more explicit support for 'luaall_c': unifying file can do
Roberto Ierusalimschy
2
-12
/
+7
2011-12-06
small bug: format '%d' for lua_Number argument
Roberto Ierusalimschy
1
-2
/
+2
2011-12-02
some compilers (e.g., gcc C++) do not accept NULL as a pointer in
Roberto Ierusalimschy
1
-4
/
+4
2011-12-02
macro 'luaL_getmetatable' seems more appropriate when getting
Roberto Ierusalimschy
1
-3
/
+3
2011-12-02
old error messages may be misleading
Roberto Ierusalimschy
1
-4
/
+4
2011-12-02
error message: "tag method" -> "metamethod"
Roberto Ierusalimschy
1
-4
/
+4
2011-11-30
function prototype did not match one in .h
Roberto Ierusalimschy
1
-2
/
+2
2011-11-30
allow non-integer arguments to integer formats (%d, %x, etc.),
Roberto Ierusalimschy
1
-9
/
+10
2011-11-30
unused variable removed
Roberto Ierusalimschy
1
-3
/
+2
[next]