aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* 'LUA_USELONGLONG' -> 'LUA_USE_LONGLONG'Roberto Ierusalimschy2011-04-202-4/+4
* 'LUA_USELONGLONG' on by default on Linux + LUA_USE_HEXAFLOAT renamedRoberto Ierusalimschy2011-04-191-3/+4
* 'luaL_setfuncs' does not need to accept a NULL list. (If there isRoberto Ierusalimschy2011-04-191-3/+6
* change in opcode OP_LOADNIL: B is used as a counter instead of aRoberto Ierusalimschy2011-04-195-18/+22
* small bug (masked by wrong entry for OP_TEST in opcodes.c)Roberto Ierusalimschy2011-04-181-1/+5
* added macro for code checkingRoberto Ierusalimschy2011-04-181-1/+7
* local function name only visible to debug info after being initializedRoberto Ierusalimschy2011-04-181-1/+6
* detail ('luai_apicheck' should be used always through macro 'api_check')Roberto Ierusalimschy2011-04-181-2/+2
* copyright updated to 2011Roberto Ierusalimschy2011-04-181-3/+3
* small corrections in description of OP_TEST and OP_LOADKXRoberto Ierusalimschy2011-04-121-3/+3
* 'luaL_findtable' -> 'luaL_getsubtable'Roberto Ierusalimschy2011-04-086-18/+18
* new instruction OP_LOADKX (to replace OP_LOADK with extra argument)Roberto Ierusalimschy2011-04-076-19/+27
* cleaner scheme of bits for variant types (light C functions) andRoberto Ierusalimschy2011-04-071-33/+47
* detail (should use macro 'ttisdeadkey')Roberto Ierusalimschy2011-04-051-2/+2
* new macro 'ttisequal'Roberto Ierusalimschy2011-04-053-7/+6
* 2nd operand for unary tag methods does not need to be 'nil'Roberto Ierusalimschy2011-04-051-3/+2
* lua_arith gets no fake operand for unary minusRoberto Ierusalimschy2011-04-051-7/+15
* all names used internally by macros end with '_'Roberto Ierusalimschy2011-04-051-28/+28
* use of 'luaL_tolstring' for option '%s' in 'string.format'Roberto Ierusalimschy2011-03-181-3/+3
* macro 'mark' renamed 'EOFMARK' ('mark' is too easy to confict, e.g.Roberto Ierusalimschy2011-03-141-4/+4
* returns for file-related functions and process-related functionsRoberto Ierusalimschy2011-03-034-82/+85
* loaders receive an extra argument returned by the searcherRoberto Ierusalimschy2011-03-011-23/+32
* small problems with 'luaone.c'Roberto Ierusalimschy2011-02-285-11/+16
* no need of lookahead in ZioRoberto Ierusalimschy2011-02-238-41/+29
* correct interpretation of return value from pcloseRoberto Ierusalimschy2011-02-211-28/+34
* small bug: may call reader function again after it returned endRoberto Ierusalimschy2011-02-172-4/+10
* error for repeated label + jumps allowed to labels followed byRoberto Ierusalimschy2011-02-141-24/+34
* 'break' does not need to be last statement in a block +Roberto Ierusalimschy2011-02-141-81/+84
* p-close returns "correct" status plus type of terminationRoberto Ierusalimschy2011-02-101-16/+36
* 'break' coded as 'goto' + small bug when closing multiple gotosRoberto Ierusalimschy2011-02-101-59/+52
* simpler code for repeat-untilRoberto Ierusalimschy2011-02-091-11/+5
* corrected 'follow' for checking whether label is last statementRoberto Ierusalimschy2011-02-091-14/+21
* small changes in goto-related error messagesRoberto Ierusalimschy2011-02-091-8/+15
* trying to avoid assumption that sizeof(char)==1Roberto Ierusalimschy2011-02-075-12/+13
* ensures that all local variables are declared inside some block,Roberto Ierusalimschy2011-02-071-45/+39
* some reorganization of dynamic data structures used by the parserRoberto Ierusalimschy2011-02-074-118/+104
* no more 'OP_CLOSE' instructions (use jumps to close upvalues)Roberto Ierusalimschy2011-02-074-12/+10
* detail in 'print_usage'Roberto Ierusalimschy2011-02-071-6/+4
* first implementation of 'goto'Roberto Ierusalimschy2011-02-044-23/+227
* new reserved word 'goto'Roberto Ierusalimschy2011-02-022-4/+4
* avoid extra increment to 'savedpc' when jumpingRoberto Ierusalimschy2011-02-011-15/+20
* new scheme to close upvalues in 'break'; jump instructions mayRoberto Ierusalimschy2011-02-015-21/+41
* better control for GC running or stoppedRoberto Ierusalimschy2011-02-011-2/+2
* bug: problem with optimizations of short-circuit logicRoberto Ierusalimschy2011-01-311-2/+45
* bug in some short-circuit optimizationsRoberto Ierusalimschy2011-01-311-21/+7
* detail (cleaning trailing spaces)Roberto Ierusalimschy2011-01-2610-24/+24
* 'sep' argument to 'string.rep' + 'string.rep' preallocates entireRoberto Ierusalimschy2011-01-121-9/+23
* 'luaL_findtable' returns boolean about whether it created a newRoberto Ierusalimschy2011-01-102-5/+6
* using 'luaL_findtable' to manage hook tableRoberto Ierusalimschy2011-01-101-17/+6
* optional argument 'sep' to 'searchpath'Roberto Ierusalimschy2011-01-071-5/+9