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
/
lbaselib.c
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
unused variable removed
Roberto Ierusalimschy
2011-11-30
1
-3
/
+2
*
avoid 'return' "to avoid warnings"
Roberto Ierusalimschy
2011-11-30
1
-8
/
+4
*
'lua_load' has an extra argument 'mode'
Roberto Ierusalimschy
2011-11-29
1
-31
/
+4
*
options for 'collectgarbage' renamed: "inc" -> "incremental";
Roberto Ierusalimschy
2011-11-23
1
-2
/
+2
*
new function 'luaL_loadfilex'
Roberto Ierusalimschy
2011-11-14
1
-7
/
+14
*
make treatment of 'pcall' and 'xpcall' more similar
Roberto Ierusalimschy
2011-11-09
1
-14
/
+11
*
refactoring of common parts of 'pcall' and 'xpcall' + avoids
Roberto Ierusalimschy
2011-11-09
1
-16
/
+21
*
lint (unused struct field)
Roberto Ierusalimschy
2011-09-30
1
-2
/
+1
*
tonumber: base 10 is not special, no base is
Roberto Ierusalimschy
2011-07-27
1
-8
/
+10
*
removed and deprecated functions really removed from the code base
Roberto Ierusalimschy
2011-07-05
1
-17
/
+4
*
'deprecated' x 'removed' (they are not the same thing)
Roberto Ierusalimschy
2011-07-02
1
-6
/
+6
*
avoid conversion from 'const char*' to 'void *' (warning about 'const')
Roberto Ierusalimschy
2011-06-16
1
-6
/
+15
*
new macro 'luai_writeline' to print newlines (and flush 'stdout')
Roberto Ierusalimschy
2011-05-26
1
-4
/
+4
*
small problems with 'luaone.c'
Roberto Ierusalimschy
2011-02-28
1
-2
/
+2
*
detail (cleaning trailing spaces)
Roberto Ierusalimschy
2011-01-26
1
-2
/
+2
*
new function 'rawlen'
Roberto Ierusalimschy
2011-01-07
1
-1
/
+11
*
own implementation of 'tunumber', so that it works correctly with
Roberto Ierusalimschy
2010-12-27
1
-18
/
+24
*
removed 'newproxy'
Roberto Ierusalimschy
2010-12-17
1
-37
/
+1
*
'loadin' -> 'load'
Roberto Ierusalimschy
2010-12-13
1
-44
/
+29
*
'loadstring' deprecated; use 'load' instead
Roberto Ierusalimschy
2010-12-08
1
-12
/
+11
*
comment
Roberto Ierusalimschy
2010-12-07
1
-2
/
+2
*
using 'strspn' to skip spaces in 'tonumber'
Roberto Ierusalimschy
2010-12-06
1
-5
/
+9
*
correct handling of negative numbers in non-10 bases by 'tonumber'
Roberto Ierusalimschy
2010-10-28
1
-2
/
+5
*
'loadin' should not check whether upvalue is called '_ENV',
Roberto Ierusalimschy
2010-09-07
1
-5
/
+3
*
name "_ENV" configurable through 'luaconf.h'
Roberto Ierusalimschy
2010-09-07
1
-2
/
+2
*
new parameter 'majorinc' to control frequency of major collections
Roberto Ierusalimschy
2010-09-03
1
-4
/
+4
*
'loadin' should accept any value for the environment (not only tables) +
Roberto Ierusalimschy
2010-08-23
1
-3
/
+6
*
new module policy: C modules do not create globals and do not register
Roberto Ierusalimschy
2010-07-02
1
-2
/
+2
*
'ipair' is back
Roberto Ierusalimschy
2010-06-13
1
-12
/
+2
*
'coroutine' library separated from 'baselib'
Roberto Ierusalimschy
2010-06-10
1
-146
/
+3
*
'gcinfo' was deprecated in version 5.0.
Roberto Ierusalimschy
2010-04-19
1
-8
/
+1
*
with light C functions, 'pairs' does not need to keep 'next' as an
Roberto Ierusalimschy
2010-04-19
1
-18
/
+8
*
option to return GC to normal (incremental, non generational) mode
Roberto Ierusalimschy
2010-04-02
1
-3
/
+4
*
no more fenvs!
Roberto Ierusalimschy
2010-03-26
1
-39
/
+1
*
draft version of a generational mode for garbage collection. (Not well
Roberto Ierusalimschy
2010-03-22
1
-3
/
+3
*
'ipairs' is deprecated
Roberto Ierusalimschy
2010-03-19
1
-1
/
+13
*
better definitions for lua_[gs]etglobal + less uses of ENVIRONINDEX
Roberto Ierusalimschy
2010-03-13
1
-5
/
+6
*
first version of _ENV; no more global variables
Roberto Ierusalimschy
2010-03-12
1
-2
/
+2
*
'unpack' moved to table library (and therefore "renamed" to
Roberto Ierusalimschy
2009-12-28
1
-18
/
+1
*
no more pseudoindex LUA_GLOBALSINDEX; global table now accessible
Roberto Ierusalimschy
2009-12-22
1
-7
/
+7
*
'lua_objlen' replaced by 'lua_rawlen', 'lua_len', and 'luaL_len'
Roberto Ierusalimschy
2009-12-17
1
-3
/
+3
*
detail ('lua_tolstring' instead of lua_objlen)
Roberto Ierusalimschy
2009-12-15
1
-3
/
+4
*
avoid using deprecated macros lua_[gs]etglobal
Roberto Ierusalimschy
2009-12-11
1
-5
/
+5
*
detail (lua_resume should empty coroutine stack even if they do not
Roberto Ierusalimschy
2009-12-10
1
-1
/
+2
*
coroutines may have C bodies
Roberto Ierusalimschy
2009-11-27
1
-3
/
+2
*
comment typos
Roberto Ierusalimschy
2009-11-26
1
-2
/
+2
*
new scheme for debug info about tail calls: no more 'fake' stack entries,
Roberto Ierusalimschy
2009-11-25
1
-3
/
+1
*
new mark LUAMOD_API for all luaopen_* functions
Roberto Ierusalimschy
2009-11-24
1
-2
/
+2
*
comments
Roberto Ierusalimschy
2009-11-19
1
-4
/
+4
*
functions 'getfenv' and 'setfenv' are deprecated
Roberto Ierusalimschy
2009-11-16
1
-3
/
+14
[next]