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
/
ltm.h
(
unfollow
)
Commit message (
Expand
)
Author
Files
Lines
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
2011-11-30
comments
Roberto Ierusalimschy
3
-14
/
+13
2011-11-30
avoid "unreachable" 'break'
Roberto Ierusalimschy
1
-2
/
+1
2011-11-30
more uses of 'l_noret'
Roberto Ierusalimschy
4
-16
/
+14
2011-11-30
avoid 'return' "to avoid warnings"
Roberto Ierusalimschy
4
-19
/
+14
2011-11-30
'lUA' -> 'LUA'
Roberto Ierusalimschy
2
-4
/
+4
2011-11-29
when available, use '*_r' versions of 'gmtime' and 'localtime'
Roberto Ierusalimschy
2
-5
/
+23
2011-11-29
another try to avoid warnings about unreachable 'return' after 'exit'
Roberto Ierusalimschy
1
-2
/
+3
2011-11-29
'lua_load' has an extra argument 'mode'
Roberto Ierusalimschy
7
-75
/
+50
2011-11-29
comment
Roberto Ierusalimschy
1
-2
/
+2
2011-11-29
small change to avoid warnings of non-specified order of access
Roberto Ierusalimschy
1
-2
/
+2
2011-11-28
explicit option RTLD_LOCAL instead of 0 (Posix does not fix
Roberto Ierusalimschy
1
-2
/
+2
2011-11-28
'table.pack' does not return 'n' (may be confusing when
Roberto Ierusalimschy
1
-3
/
+2
2011-11-28
avoid some warnings about converting 32-bit shifts into 64-bit results
Roberto Ierusalimschy
2
-9
/
+15
2011-11-28
avoid warnings of unreacheable 'break's
Roberto Ierusalimschy
1
-3
/
+4
2011-11-25
MS_ASMTRICK is only valid on MS compilers (not any Windows compiler)
Roberto Ierusalimschy
1
-2
/
+2
2011-11-25
'LUA_DL_DLL' is not yet defined before the inclusion of 'lua.h'
Roberto Ierusalimschy
1
-2
/
+2
2011-11-25
'_fseeki64' and family not available in all Windows platforms
Roberto Ierusalimschy
1
-2
/
+4
2011-11-24
details
Roberto Ierusalimschy
2
-5
/
+5
2011-11-23
options for 'collectgarbage' renamed: "inc" -> "incremental";
Roberto Ierusalimschy
1
-2
/
+2
2011-11-16
small changes to avoid some warnings
Roberto Ierusalimschy
1
-9
/
+5
2011-11-14
new function 'luaL_loadfilex'
Roberto Ierusalimschy
3
-19
/
+50
2011-11-14
'luaIO_Stream' -> 'luaL_Stream'
Roberto Ierusalimschy
1
-2
/
+2
2011-11-11
strutcture for file handles exported in 'lauxlib.h'
Roberto Ierusalimschy
2
-7
/
+28
2011-11-10
using Lua buffers to build error messages
Roberto Ierusalimschy
1
-9
/
+9
2011-11-09
make treatment of 'pcall' and 'xpcall' more similar
Roberto Ierusalimschy
1
-14
/
+11
2011-11-09
refactoring of common parts of 'pcall' and 'xpcall' + avoids
Roberto Ierusalimschy
1
-16
/
+21
2011-11-09
create error messages with a single concat, to avoid problems with
Roberto Ierusalimschy
1
-20
/
+33
2011-11-09
in 'luaL_checkstack', include extra stack space in test to allow
Roberto Ierusalimschy
1
-2
/
+4
2011-11-09
extra argument to instruction 'checkstack' (in 'testC')
Roberto Ierusalimschy
1
-2
/
+3
2011-11-09
configurable 'directory separator' in 'package.searchpath'
Roberto Ierusalimschy
1
-11
/
+34
2011-11-09
avoids including 'stdio.h' everywhere (because of definitions for
Roberto Ierusalimschy
1
-1
/
+5
2011-11-09
small bug: error message in 'io.lines' is not the error number
Roberto Ierusalimschy
1
-4
/
+5
2011-11-06
avoid calling "extra value" as if it were a function option
Roberto Ierusalimschy
1
-4
/
+6
2011-11-05
by default, do not use Windows' goodies in Windows CE build
Roberto Ierusalimschy
1
-3
/
+3
2011-10-31
cannot apply macro 'getstr' over NULL
Roberto Ierusalimschy
1
-5
/
+6
2011-10-31
extra comments about what fields are optional debug information
Roberto Ierusalimschy
1
-4
/
+4
2011-10-31
detail (avoid applying macro 'getstr' with a function-call argument)
Roberto Ierusalimschy
1
-2
/
+3
2011-10-25
detail (comment)
Roberto Ierusalimschy
1
-2
/
+2
[next]