aboutsummaryrefslogtreecommitdiff
path: root/ldo.c (unfollow)
Commit message (Expand)AuthorFilesLines
2015-04-29error message ("too complex" -> "too many registers") + MAXREGSRoberto Ierusalimschy1-4/+5
2015-04-13patch for last bug corrected to be against last released versionRoberto Ierusalimschy1-15/+15
2015-04-11some details in 'luaO_int2fb' + more consistent use of the localeRoberto Ierusalimschy1-10/+20
2015-04-10Bug: suspended '__le' metamethod can give wrong resultRoberto Ierusalimschy3-12/+90
2015-04-10re-organization of initial configuration optionsRoberto Ierusalimschy1-27/+40
2015-04-06avoid using API functions inside the coreRoberto Ierusalimschy1-12/+10
2015-04-03more consistent use of locale radix character across LuaRoberto Ierusalimschy4-20/+21
2015-04-02detail (removed unused macro VARBITS)Roberto Ierusalimschy1-3/+1
2015-04-02new function 'log2' to test 'luaO_ceillog2' (if needed)Roberto Ierusalimschy1-1/+9
2015-04-02detail (comment)Roberto Ierusalimschy1-2/+2
2015-03-31'LUA_REAL_*' -> 'LUA_FLOAT_*' (everywhere else we are using 'float')Roberto Ierusalimschy1-16/+21
2015-03-30janitor work (comments, variable names, some other details)Roberto Ierusalimschy1-25/+31
2015-03-30calls to 'luaC_checkGC' in luaD_precall moved near to 'luaD_checkstack'Roberto Ierusalimschy1-4/+4
2015-03-30detail ('b + base' -> 'base + b' to follow all other similar uses)Roberto Ierusalimschy1-2/+2
2015-03-30avoid expression with side effect (in debug mode) inside 'sizeof'Roberto Ierusalimschy1-2/+3
2015-03-30details (avoid 'lint' warnings)Roberto Ierusalimschy3-12/+12
2015-03-28details (avoid some 'lint' warnings)Roberto Ierusalimschy1-5/+6
2015-03-28details (avoid 'lint' warnings)Roberto Ierusalimschy7-35/+37
2015-03-25'clearapihash' -> 'luaS_clearcache' and moved to 'lstring.c' (whichRoberto Ierusalimschy3-17/+18
2015-03-14commentsRoberto Ierusalimschy1-5/+5
2015-03-13code detail ('if' -> '?:')Roberto Ierusalimschy1-6/+6
2015-03-12use 'log2' when availableRoberto Ierusalimschy1-1/+4
2015-03-11'ci_func' don't need to be exportedRoberto Ierusalimschy3-7/+8
2015-03-10'lua_pushliteral' implemented with 'lua_pushstring' (to takeRoberto Ierusalimschy1-3/+2
2015-03-10detailRoberto Ierusalimschy1-3/+3
2015-03-09line history keep lines without added 'return'Roberto Ierusalimschy1-8/+11
2015-03-07always use macros to operate on lua_NumbersRoberto Ierusalimschy1-2/+2
2015-03-06macro 'luai_apicheck'/'api_check' back with a 'lua_State' parameterRoberto Ierusalimschy6-54/+60
2015-03-06allocation function is not exactly API (and cannot raise errorsRoberto Ierusalimschy1-3/+2
2015-03-06detail (use 'lua_pushliteral' to push an empty string)Roberto Ierusalimschy1-2/+2
2015-03-05avoid using 'lua_pushliteral' in a non-zero-terminated stringRoberto Ierusalimschy1-2/+2
2015-03-04avoid testing for NULL when marking objects that cannot be NULLRoberto Ierusalimschy1-11/+21
2015-03-04new cache for interning stringsRoberto Ierusalimschy6-15/+61
2015-03-03'point2int' -> 'point2uint' (to reflect its actual result type)Roberto Ierusalimschy2-5/+5
2015-03-03do not attempt emergency collection while building state (it isRoberto Ierusalimschy1-3/+5
2015-03-03detail (use 'luaS_newliteral' when possible)Roberto Ierusalimschy1-3/+3
2015-03-02configuration for numerical types through only one #define forRoberto Ierusalimschy1-20/+28
2015-03-02new macros 'chgfltvalue'/'chgivalue' (numerical for loop doesRoberto Ierusalimschy2-4/+10
2015-02-28LUA_COMPAT_5_1 needs some options deprecated from 5.2 to 5.3Roberto Ierusalimschy1-10/+14
2015-02-23added patches to two bugsRoberto Ierusalimschy1-13/+28
2015-02-20bug: 'string.format("%f")' can cause a buffer overflow (with long doubles)Roberto Ierusalimschy1-2/+92
2015-02-20'numisinteger' (for table keys) replaced by 'luaV_tointeger' (oldRoberto Ierusalimschy3-41/+21
2015-02-20make 'hashfloat' configurableRoberto Ierusalimschy1-8/+8
2015-02-19bug: when manipulating other threads, there is no garanties aboutRoberto Ierusalimschy1-1/+20
2015-02-16detail (file does not need 'string.h')Roberto Ierusalimschy1-2/+1
2015-02-16detail ('fopen' needs 'stdio.h')Roberto Ierusalimschy1-1/+2
2015-02-13bug: suspended function can have its 'func' field not pointing toRoberto Ierusalimschy1-2/+25
2015-02-13some changes in 'hashfloat' to avoid undefined (in ISO C) numericalRoberto Ierusalimschy1-8/+21
2015-02-11added API checks to some unprotected 'top' incrementsRoberto Ierusalimschy1-7/+12
2015-02-09detailRoberto Ierusalimschy1-2/+2