bugs
When loading a file, Lua may call the reader function again after
2013-07-05 15:02:28 -03:00
lapi.c
'lua_cvtonum' -> 'lua_strtonum'; converts only strings to numbers
2013-07-05 11:29:51 -03:00
lapi.h
extra api checks for number of returns of C functions and for lua_yield
2009-11-27 13:37:59 -02:00
lauxlib.c
no need to check "bad conversion number->int;" in luaL_checkversion,
2013-06-27 15:32:33 -03:00
lauxlib.h
no need to check "bad conversion number->int;" in luaL_checkversion,
2013-06-27 15:32:33 -03:00
lbaselib.c
'tonumber': base must be a number
2013-07-05 11:39:15 -03:00
lbitlib.c
avoid undefined shift of LUA_NBITS in rotate operation
2013-07-09 15:31:01 -03:00
lcode.c
avoid using raw representation of numbers for hashing, as number may
2013-06-25 15:57:18 -03:00
lcode.h
new operation '//' (integer division)
2013-04-26 10:08:29 -03:00
lcorolib.c
added 'return' (when possible) to calls to error functions
2013-02-21 10:44:53 -03:00
lctype.c
missing 'LUA_CORE' definition
2011-10-03 13:19:23 -03:00
lctype.h
detail (cleaned whitespaces at end of lines)
2011-07-15 09:50:29 -03:00
ldblib.c
'numbits' moved from 'math' to 'debug' library
2013-06-25 16:37:00 -03:00
ldebug.c
correct error message for conversion errors from float to int
2013-05-06 14:21:59 -03:00
ldebug.h
correct error message for conversion errors from float to int
2013-05-06 14:21:59 -03:00
ldo.c
BUG: stack overflow in vararg functions with many fixed
2013-04-19 18:05:04 -03:00
ldo.h
'lua_load' has an extra argument 'mode'
2011-11-29 13:55:08 -02:00
ldump.c
dumping and undumping integers
2013-04-26 15:48:35 -03:00
lfunc.c
open upvalues cannot be old if thread is not old; when thread is old,
2012-10-03 09:36:46 -03:00
lfunc.h
no more 'Proto' objects on the stack. Protos are anchored on outer
2012-05-08 10:53:33 -03:00
lgc.c
bug: garbage collector can trigger too many times in recursive loops,
2013-04-26 15:26:49 -03:00
lgc.h
small bug: generational mode is always in 'propagate' mode only
2012-09-11 09:53:08 -03:00
linit.c
'luaL_findtable' -> 'luaL_getsubtable'
2011-04-08 16:17:36 -03:00
liolib.c
'io.write' writes integers directly (and correctly)
2013-06-07 16:01:35 -03:00
llex.c
new constant 'MAX_SIZE', distinct from 'MAX_SIZET', for sizes visible
2013-06-19 11:27:00 -03:00
llex.h
new operation '//' (integer division)
2013-04-26 10:08:29 -03:00
llimits.h
new constant 'MAX_SIZE', distinct from 'MAX_SIZET', for sizes visible
2013-06-19 11:27:00 -03:00
lmathlib.c
new function 'ifloor'
2013-07-03 14:23:19 -03:00
lmem.c
removed debug code
2012-05-23 12:41:53 -03:00
lmem.h
typo in comment
2013-02-20 11:08:21 -03:00
loadlib.c
typos in comments
2012-05-30 09:33:44 -03:00
lobject.c
macro 'lua_strx2number' does not need to be global
2013-06-25 15:58:32 -03:00
lobject.h
'luaO_str2int' more generic: accepts white spaces around the numeral
2013-05-14 12:59:04 -03:00
lopcodes.c
new operation '//' (integer division)
2013-04-26 10:08:29 -03:00
lopcodes.h
new operation '//' (integer division)
2013-04-26 10:08:29 -03:00
loslib.c
uses integers for time
2013-05-14 12:57:11 -03:00
lparser.c
new operation '//' (integer division)
2013-04-26 10:08:29 -03:00
lparser.h
first implementation of literal integers (no constant folding yet)
2013-04-16 15:46:28 -03:00
lstate.c
cast in 'luai_makeseed' now casts to needed type
2012-10-02 14:40:53 -03:00
lstate.h
comment
2012-07-02 10:37:04 -03:00
lstring.c
new constant 'MAX_SIZE', distinct from 'MAX_SIZET', for sizes visible
2013-06-19 11:27:00 -03:00
lstring.h
random seed used in the hash of all strings to avoid intentional
2012-02-01 19:57:15 -02:00
lstrlib.c
added "reasonable" limit for 'string.rep' (otherwise it is too easy
2013-06-20 12:06:51 -03:00
ltable.c
new macro 'l_floor' (allows 'floorf' even when other math operations
2013-06-20 12:02:49 -03:00
ltable.h
"integer" keys in tables are now lua_Integer, not 'int'.
2013-04-26 12:39:25 -03:00
ltablib.c
no need to handle 0 as a special case in 'table.remove'
2013-03-07 15:17:24 -03:00
ltests.c
try to avoid warnings when converting int to pointer
2013-06-20 18:59:13 -03:00
ltests.h
'module'/'luaL_register' and associates are deprecated
2010-07-28 12:51:59 -03:00
ltm.c
correct error message for conversion errors from float to int
2013-05-06 14:21:59 -03:00
ltm.h
new function 'luaT_trybinTM'
2013-04-29 13:56:50 -03:00
lua.c
pops the string from 'get_prompt' only after using it
2012-09-29 17:07:06 -03:00
lua.h
'lua_cvtonum' -> 'lua_strtonum'; converts only strings to numbers
2013-07-05 11:29:51 -03:00
luaconf.h
use different constants (instead of different values for the same constant)
2013-07-09 15:31:35 -03:00
lualib.h
removed redundant definition for FILEHANDLE
2011-12-08 10:11:37 -02:00
lundump.c
dumping and undumping integers
2013-04-26 15:48:35 -03:00
lundump.h
no more 'Proto' objects on the stack. Protos are anchored on outer
2012-05-08 10:53:33 -03:00
lvm.c
new macro 'l_floor' (allows 'floorf' even when other math operations
2013-06-20 12:02:49 -03:00
lvm.h
new macro 'intop' (to perform integer arithmetic on unsigned types)
2013-05-02 09:31:26 -03:00
lzio.c
details (header comments)
2012-05-14 10:34:18 -03:00
lzio.h
details ('Type* id' -> 'Type *id')
2013-06-07 11:51:10 -03:00
makefile
reorganization of warnings + update of explicit dependencies (gcc -MM)
2013-06-20 15:56:51 -03:00