aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* correct computation for limit in 'getnum'Roberto Ierusalimschy2014-12-111-3/+3
|
* better limits for 'sting.rep' and 'string.packsize'Roberto Ierusalimschy2014-12-111-12/+17
|
* new specifiers in 'strftime' are defined in C99 (not Posix)Roberto Ierusalimschy2014-12-101-3/+3
|
* 'ipairs' needs an argumentRoberto Ierusalimschy2014-12-101-1/+2
|
* macro 'LUA_C89_NUMBERS' makes a little easier to use C89 numerical typesRoberto Ierusalimschy2014-12-101-37/+25
|
* new function 'string.packsize'Roberto Ierusalimschy2014-12-101-1/+24
|
* give preference to global names in tracebacksRoberto Ierusalimschy2014-12-101-12/+10
|
* new parameter for testC instruction 'pcall' (error handler)Roberto Ierusalimschy2014-12-101-4/+4
|
* error handler does not need to be a function (can be a callableRoberto Ierusalimschy2014-12-101-2/+1
| | | | object)
* redefinition of LUAI_MAXSTACK to make stack-overflow tests run fasterRoberto Ierusalimschy2014-12-091-1/+6
|
* no more 'preloadedlibs' when opening libraries (as it is dead code now)Roberto Ierusalimschy2014-12-092-26/+12
|
* handle case where function was called as a hookRoberto Ierusalimschy2014-12-081-4/+7
|
* In 'debug.gethook', does not query hook table (which may not exist) ifRoberto Ierusalimschy2014-12-081-6/+8
| | | | there is no hook set
* 'assert' checks that it has (at least) one parameter + 'assert' ensuresRoberto Ierusalimschy2014-12-081-4/+5
| | | | it passes only one value to 'error'
* use 'namewhat' when building a tracebackRoberto Ierusalimschy2014-12-081-2/+2
|
* avoid octal numeralsRoberto Ierusalimschy2014-12-081-2/+2
|
* in test mode, debug library is not predefined (to allow testingRoberto Ierusalimschy2014-12-062-3/+11
| | | | 'preloadedlibs')
* no more default size for option 'c' in pack/unpackRoberto Ierusalimschy2014-12-041-2/+6
|
* some functions from test module must be exportedRoberto Ierusalimschy2014-11-291-4/+5
|
* casts ('(int)' -> 'cast_int')Roberto Ierusalimschy2014-11-291-9/+9
|
* bug: lua_tounsignedx must cast to lua_Unsigned (of course...)Roberto Ierusalimschy2014-11-291-2/+2
|
* next release won't be betaRoberto Ierusalimschy2014-11-281-2/+2
|
* removed unneeded barrier ('from' must be white)Roberto Ierusalimschy2014-11-271-2/+2
|
* details (comments)Roberto Ierusalimschy2014-11-251-6/+5
|
* clearer notation for "compare" instructionRoberto Ierusalimschy2014-11-251-3/+6
|
* bug ('#3' causes seg. fault in 5.3-beta) + comments + 'codearith' ->Roberto Ierusalimschy2014-11-241-13/+24
| | | | | 'codeexpval' (confusion about what operations function accept was one of the reasons for the bug)
* new test for macro 'luai_numinvalidop'Roberto Ierusalimschy2014-11-241-1/+5
|
* detail (buffer in 'LoadF' is related to files)Roberto Ierusalimschy2014-11-211-2/+2
|
* avoid memory errors while a file is locked (when reading a line)Roberto Ierusalimschy2014-11-211-7/+16
|
* 'x//y' extended to floatsRoberto Ierusalimschy2014-11-213-11/+10
|
* 'x//y' extended to floats + more comments about module and floorRoberto Ierusalimschy2014-11-212-24/+43
| | | | division operations
* simpler definition for 'luaV_tonumber_'Roberto Ierusalimschy2014-11-191-11/+8
|
* detail (LUAL_BUFFERSIZE has a larger variation among differentRoberto Ierusalimschy2014-11-191-2/+2
| | | | platforms)
* allows calling luaL_checkstack with no message (in runC)Roberto Ierusalimschy2014-11-141-2/+5
|
* small bug (error of "chunk has too many lines" might use 't.token'Roberto Ierusalimschy2014-11-141-2/+3
| | | | before reading the first token)
* uses return value from luaL_getmetatableRoberto Ierusalimschy2014-11-121-3/+2
|
* uses return value from lua_getfieldRoberto Ierusalimschy2014-11-121-3/+3
|
* details (matching parameter names with manual)Roberto Ierusalimschy2014-11-121-10/+11
|
* details (match parameter names with lua.h and manual)Roberto Ierusalimschy2014-11-121-12/+12
|
* detail (use new returned value from 'lua_getglobal' )Roberto Ierusalimschy2014-11-111-3/+2
|
* detail (to avoid a "to avoid warnings" return)Roberto Ierusalimschy2014-11-111-10/+8
|
* independent code for 'printstack' + test for panic function canRoberto Ierusalimschy2014-11-111-17/+21
| | | | ran code there
* no need to ensure any stack space for panic function + some changesRoberto Ierusalimschy2014-11-111-16/+12
| | | | in 'tryfuncTM' (small simplification)
* detailsRoberto Ierusalimschy2014-11-111-3/+3
|
* detailsRoberto Ierusalimschy2014-11-101-7/+11
|
* bug: memory error in panic mode does not push error message onRoberto Ierusalimschy2014-11-101-2/+14
| | | | the stack + stack check in tryfuncTM + comments
* new function 'T.checkpanic' (to check panic errors)Roberto Ierusalimschy2014-11-101-1/+52
|
* detail (comment)Roberto Ierusalimschy2014-11-101-2/+2
|
* luaL_loadbuffer replaced by luaL_loadstring (to test luaL_loadstring)Roberto Ierusalimschy2014-11-101-4/+11
| | | | + 'rawgetp'/'rawsetp' added to C interpreter
* added missing cases for debug info about tag methods +Roberto Ierusalimschy2014-11-101-17/+20
| | | | better error message for bitwise operators