summaryrefslogtreecommitdiff
path: root/lbaselib.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* 'ipairs' respects metamethodsRoberto Ierusalimschy2014-07-241-5/+41
* new type 'lua_Ctx' for continuation-function contexts (to allow typeRoberto Ierusalimschy2014-07-171-3/+3
* function 'type' keeps type names as upvalues to avoid creating stringsRoberto Ierusalimschy2014-07-161-8/+21
* detail (typos in comments)Roberto Ierusalimschy2014-06-301-2/+2
* new type lua_KFunction + no more 'lua_getctx'Roberto Ierusalimschy2014-06-101-25/+15
* 'assert' does not assume that the error object is a stringRoberto Ierusalimschy2014-06-021-4/+9
* better(?) implementation for 'pcall'/'xpcall' (regarding the insertionRoberto Ierusalimschy2014-05-161-20/+35
* 'lua_strtonum' (and 'luaO_str2num') now return string size, instead ofRoberto Ierusalimschy2014-05-011-12/+12
* lua_gettable and similars return type of gotten valueRoberto Ierusalimschy2014-03-121-3/+2
* no more second result from 'collectgarbage"count"' (as Lua seldomRoberto Ierusalimschy2014-02-141-4/+3
* no more local collectionRoberto Ierusalimschy2014-02-131-3/+3
* GC local pause configurableRoberto Ierusalimschy2013-09-131-3/+5
* no more generational collection !!!Roberto Ierusalimschy2013-08-051-5/+3
* use unsigneds for unary minus, tooRoberto Ierusalimschy2013-07-101-2/+2
* 'tonumber': base must be a numberRoberto Ierusalimschy2013-07-051-2/+2
* 'tonumber': does not accept numbers when given a base + convertion fromRoberto Ierusalimschy2013-07-051-26/+43
* 'tonumber' now works with integers tooRoberto Ierusalimschy2013-05-161-10/+8
* added 'return' (when possible) to calls to error functionsRoberto Ierusalimschy2013-02-211-2/+3
* Bug: load/loadfile returns wrong result when given an environmentRoberto Ierusalimschy2012-12-031-16/+14
* small bug: a reader function should not modify the Lua stackRoberto Ierusalimschy2012-04-271-1/+2
* unused variable removedRoberto Ierusalimschy2011-11-301-3/+2
* avoid 'return' "to avoid warnings"Roberto Ierusalimschy2011-11-301-8/+4
* 'lua_load' has an extra argument 'mode'Roberto Ierusalimschy2011-11-291-31/+4
* options for 'collectgarbage' renamed: "inc" -> "incremental";Roberto Ierusalimschy2011-11-231-2/+2
* new function 'luaL_loadfilex'Roberto Ierusalimschy2011-11-141-7/+14
* make treatment of 'pcall' and 'xpcall' more similarRoberto Ierusalimschy2011-11-091-14/+11
* refactoring of common parts of 'pcall' and 'xpcall' + avoidsRoberto Ierusalimschy2011-11-091-16/+21
* lint (unused struct field)Roberto Ierusalimschy2011-09-301-2/+1
* tonumber: base 10 is not special, no base isRoberto Ierusalimschy2011-07-271-8/+10
* removed and deprecated functions really removed from the code baseRoberto Ierusalimschy2011-07-051-17/+4
* 'deprecated' x 'removed' (they are not the same thing)Roberto Ierusalimschy2011-07-021-6/+6
* avoid conversion from 'const char*' to 'void *' (warning about 'const')Roberto Ierusalimschy2011-06-161-6/+15
* new macro 'luai_writeline' to print newlines (and flush 'stdout')Roberto Ierusalimschy2011-05-261-4/+4
* small problems with 'luaone.c'Roberto Ierusalimschy2011-02-281-2/+2
* detail (cleaning trailing spaces)Roberto Ierusalimschy2011-01-261-2/+2
* new function 'rawlen'Roberto Ierusalimschy2011-01-071-1/+11
* own implementation of 'tunumber', so that it works correctly withRoberto Ierusalimschy2010-12-271-18/+24
* removed 'newproxy'Roberto Ierusalimschy2010-12-171-37/+1
* 'loadin' -> 'load'Roberto Ierusalimschy2010-12-131-44/+29
* 'loadstring' deprecated; use 'load' insteadRoberto Ierusalimschy2010-12-081-12/+11
* commentRoberto Ierusalimschy2010-12-071-2/+2
* using 'strspn' to skip spaces in 'tonumber'Roberto Ierusalimschy2010-12-061-5/+9
* correct handling of negative numbers in non-10 bases by 'tonumber'Roberto Ierusalimschy2010-10-281-2/+5
* 'loadin' should not check whether upvalue is called '_ENV',Roberto Ierusalimschy2010-09-071-5/+3
* name "_ENV" configurable through 'luaconf.h'Roberto Ierusalimschy2010-09-071-2/+2
* new parameter 'majorinc' to control frequency of major collectionsRoberto Ierusalimschy2010-09-031-4/+4
* 'loadin' should accept any value for the environment (not only tables) +Roberto Ierusalimschy2010-08-231-3/+6
* new module policy: C modules do not create globals and do not registerRoberto Ierusalimschy2010-07-021-2/+2
* 'ipair' is backRoberto Ierusalimschy2010-06-131-12/+2
* 'coroutine' library separated from 'baselib'Roberto Ierusalimschy2010-06-101-146/+3