index
:
lua
master
v5-2
v5.3
v5.4
A mirror of https://github.com/lua/lua
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lapi.c
(
unfollow
)
Commit message (
Expand
)
Author
Files
Lines
2009-10-13
local function definition does not need to correct debug information
Roberto Ierusalimschy
1
-3
/
+1
2009-10-13
two small bugs: 'debug.getinfo' did not consider negative indices as out
Roberto Ierusalimschy
1
-8
/
+10
2009-10-11
parser keeps list of active local variables in a single dynamic array,
Roberto Ierusalimschy
7
-47
/
+76
2009-10-05
new function lua_copy
Roberto Ierusalimschy
7
-29
/
+45
2009-09-30
'cpcall' must ensure correct environment for called function
Roberto Ierusalimschy
1
-2
/
+5
2009-09-30
a few more instructions to testC (func2udata and getfield)
Roberto Ierusalimschy
1
-1
/
+9
2009-09-30
first implementation of lexical environments
Roberto Ierusalimschy
7
-22
/
+68
2009-09-28
information about upvalues (where they come from) kept in Proto structure,
Roberto Ierusalimschy
14
-98
/
+97
2009-09-28
some operations may shrink g->totalbytes so g->estimate must be
Roberto Ierusalimschy
1
-4
/
+9
2009-09-28
initialize g->estimate (just in case)
Roberto Ierusalimschy
1
-2
/
+3
2009-09-28
handle extended opcodes (with OP_EXTRAARG) when checking metamethod
Roberto Ierusalimschy
1
-1
/
+3
2009-09-28
function list in luaL_register may be NULL for an empty list
Roberto Ierusalimschy
1
-2
/
+3
2009-09-23
limit of constants per function changed to 2^26 using extra arguments
Roberto Ierusalimschy
5
-66
/
+86
2009-09-23
detail (space between function name and its parameter list)
Roberto Ierusalimschy
1
-2
/
+2
2009-09-21
'cpcall' reimplemented as a predefined value in the registry
Roberto Ierusalimschy
3
-40
/
+42
2009-09-18
references must start after predefined values in the registry
Roberto Ierusalimschy
1
-8
/
+8
2009-09-17
'lua_mainthread' replaced by new preregistered value LUA_RIDX_MAINTHREAD
Roberto Ierusalimschy
4
-14
/
+25
2009-09-14
first implementation of 'lua_yieldk' (yield with continuation)
Roberto Ierusalimschy
3
-9
/
+39
2009-09-09
extra facilities to testC: comments + commands print, callk and yield +
Roberto Ierusalimschy
1
-5
/
+35
2009-09-09
'debug.[gs]etupvalue' should be able to access C upvalues too
Roberto Ierusalimschy
1
-2
/
+1
2009-09-07
"bug": lua_createtable with sizes changed (array <-> record)
Roberto Ierusalimschy
1
-2
/
+2
2009-09-05
details + comments
Roberto Ierusalimschy
1
-7
/
+15
2009-09-01
"file:write" returns "file" in case of success
Roberto Ierusalimschy
1
-4
/
+7
2009-08-31
API checks now have explanatory messages
Roberto Ierusalimschy
3
-28
/
+34
2009-08-28
ensures that argument 'mode' to 'io.open' matches "[rwa]%+?b?", to
Roberto Ierusalimschy
1
-2
/
+11
2009-08-26
better machinery to test continuations in the C API
Roberto Ierusalimschy
1
-1
/
+24
2009-08-25
correct way to check arguments to 'strftime'
Roberto Ierusalimschy
2
-23
/
+41
2009-08-10
test for 'fs' being NULL at the end of 'close_func' is useless ('fs'
Roberto Ierusalimschy
1
-2
/
+4
2009-08-10
avoid an unprotected call to 'lua_tostring' which theoretically may
Roberto Ierusalimschy
1
-2
/
+14
2009-08-10
"stange numbers" (-0 and NaN) also go to the constant table (as
Roberto Ierusalimschy
1
-16
/
+29
2009-08-07
luaH_[gs]etnum renamed to luaH_[gs]etint (as they only accept integers,
Roberto Ierusalimschy
1
-9
/
+9
2009-08-07
luaH_[gs]etnum renamed to luaH_[gs]etint (as they only accept integers,
Roberto Ierusalimschy
4
-10
/
+10
2009-08-05
"But" -> "Bug" (misspelling)
Roberto Ierusalimschy
1
-5
/
+5
2009-08-04
'debug.getfenv' does not check whether it has an argument
Roberto Ierusalimschy
1
-2
/
+21
2009-08-04
small bug: debug.getfenv should check whether it has an argument
Roberto Ierusalimschy
1
-1
/
+2
2009-08-04
'collectgarbage"count"' returns a second argument with the count%1024.
Roberto Ierusalimschy
1
-2
/
+3
2009-07-16
bug: stack must be cleared until its end (including extra size) +
Roberto Ierusalimschy
1
-26
/
+9
2009-07-15
tail calls do not need to move whole new frame down, only its slice
Roberto Ierusalimschy
1
-8
/
+12
2009-07-15
new macro 'getproto'
Roberto Ierusalimschy
3
-7
/
+8
2009-07-15
detail (comment: 'correspoding' -> 'corresponding')
Roberto Ierusalimschy
1
-2
/
+2
2009-07-15
'index2adr' -> 'index2addr' (correct spelling)
Roberto Ierusalimschy
1
-40
/
+40
2009-07-15
avoid using 'UNUSED' (not defined outside the kernel)
Roberto Ierusalimschy
1
-5
/
+5
2009-07-15
'luaL_tolstring' uses 'lua_tolstring' instead of 'lua_tostring' and
Roberto Ierusalimschy
1
-5
/
+2
2009-07-15
calls with LUA_MULTRET may leave no free slots in the stack
Roberto Ierusalimschy
2
-2
/
+5
2009-07-15
new way to control stack overflow, controling only total size of the stack
Roberto Ierusalimschy
10
-78
/
+100
2009-07-08
new definition for 'luaD_checkstack' to avoid possible overflows
Roberto Ierusalimschy
1
-4
/
+3
2009-07-08
errors in 'resume' should be all protected
Roberto Ierusalimschy
1
-5
/
+9
2009-07-02
smart use of varargs may create functions that return too
Roberto Ierusalimschy
1
-2
/
+22
2009-07-01
BUG: 'luaV_settable' may invalidate a reference to a table and try
Roberto Ierusalimschy
1
-5
/
+46
2009-07-01
bug: 'luaV_settable' may invalidate a reference to a table and try
Roberto Ierusalimschy
1
-3
/
+6
[prev]
[next]