summaryrefslogtreecommitdiff
path: root/lua.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* new way to handle -E option (write a mark in the registry to avoidv5.2.0Roberto Ierusalimschy2011-12-121-16/+7
* new option '-E' to avoid environment variablesRoberto Ierusalimschy2011-08-171-5/+25
* detail (using array instead of several variables to keep track ofRoberto Ierusalimschy2011-08-041-10/+17
* correct length for LUA_COPYRIGHT (without trailing '\0')Roberto Ierusalimschy2011-06-161-2/+2
* new macro 'luai_writeline' to print newlines (and flush 'stdout')Roberto Ierusalimschy2011-05-261-3/+4
* more complete (and hopefuly more correct) handling of 'sizeof(char)'Roberto Ierusalimschy2011-05-031-2/+2
* macro 'mark' renamed 'EOFMARK' ('mark' is too easy to confict, e.g.Roberto Ierusalimschy2011-03-141-4/+4
* detail in 'print_usage'Roberto Ierusalimschy2011-02-071-6/+4
* 'printf' replaced by 'luai_writestring'Roberto Ierusalimschy2010-12-031-2/+2
* corrected warnings from different compilers (mostly casts and smallRoberto Ierusalimschy2010-10-251-2/+2
* better error message for 'lua -e -i'Roberto Ierusalimschy2010-10-181-5/+6
* environment variables consulted by Lua may be version-specificRoberto Ierusalimschy2010-07-251-5/+13
* comand-line option '-l' creates global with given name afterRoberto Ierusalimschy2010-07-021-9/+18
* no more 'ccall' nor 'cpcall' functions. (With light C functions theyRoberto Ierusalimschy2010-04-141-2/+3
* better definitions for lua_[gs]etglobal + less uses of ENVIRONINDEXRoberto Ierusalimschy2010-03-131-5/+5
* removed useless test (argv[i] cannot be NULL when i<argc)Roberto Ierusalimschy2010-02-271-2/+1
* new macro 'luai_writestringerror'Roberto Ierusalimschy2010-02-181-8/+11
* no need to flush either stderr or \n-terminated outputsRoberto Ierusalimschy2010-02-111-4/+1
* better usage messages, showing entire offending argumentRoberto Ierusalimschy2010-02-091-8/+11
* new function 'luaL_cpcall'Roberto Ierusalimschy2010-01-211-7/+4
* better messages for invalid optionsRoberto Ierusalimschy2010-01-211-8/+10
* 'lua_cpcall' is deprecated + other small changes in 'pmain' (commentsRoberto Ierusalimschy2009-12-221-31/+28
* no more pseudoindex LUA_GLOBALSINDEX; global table now accessibleRoberto Ierusalimschy2009-12-221-5/+5
* 'lua_objlen' replaced by 'lua_rawlen', 'lua_len', and 'luaL_len'Roberto Ierusalimschy2009-12-171-3/+5
* macro name change: LUA_INIT->LUA_INIT_VARRoberto Ierusalimschy2009-12-171-5/+5
* several configuration options that do not change often moved out ofRoberto Ierusalimschy2009-12-171-1/+64
* avoid using deprecated macros lua_[gs]etglobalRoberto Ierusalimschy2009-12-111-4/+4
* 'notail' -> 'noextrachars' ('notail' may confuse with tail calls)Roberto Ierusalimschy2009-11-241-5/+5
* avoid an unprotected call to 'lua_tostring' which theoretically mayRoberto Ierusalimschy2009-08-101-2/+14
* calls with LUA_MULTRET may leave no free slots in the stackRoberto Ierusalimschy2009-07-151-1/+2
* 'checkversion' implemented in the auxiliary libraryRoberto Ierusalimschy2009-06-181-2/+2
* 'fputs' changed to 'luai_writestring' + use of 'lua_checkversion'Roberto Ierusalimschy2009-02-191-2/+3
* do not use compatibility macros in LuaRoberto Ierusalimschy2008-07-111-2/+2
* message from -v option goes to stdout, as it is not an error messageRoberto Ierusalimschy2008-06-261-2/+2
* GC called after errors now are called after showing error message (toRoberto Ierusalimschy2008-06-261-3/+3
* stand-alone error-message detailsRoberto Ierusalimschy2007-09-051-3/+3
* detail (LUA_COPYRIGHT includes release number)Roberto Ierusalimschy2007-08-071-2/+2
* traceback function moved to auxlibRoberto Ierusalimschy2007-06-221-20/+7
* error handler in 'lua.c' tries '__tostring' metamethod if errorRoberto Ierusalimschy2007-04-261-16/+23
* new constant LUA_OKRoberto Ierusalimschy2006-10-101-24/+26
* 'lua_strlen' is for compatibility onlyRoberto Ierusalimschy2006-09-181-2/+2
* avoid trailing white spacesRoberto Ierusalimschy2006-09-111-3/+3
* detailRoberto Ierusalimschy2006-06-231-3/+5
* new macro LUA_RELEASERoberto Ierusalimschy2006-06-021-2/+2
* does not accept garbage after options (e.g., -ixxx)Roberto Ierusalimschy2006-05-241-6/+19
* environment variable names should be configurableRoberto Ierusalimschy2006-04-101-3/+3
* small optimizations (lua_newtable -> lua_createtable)Roberto Ierusalimschy2005-12-291-2/+2
* detail (stop collector while openning libraries)Roberto Ierusalimschy2005-12-291-1/+3
* avoid printing two copyright messages with '-v -i' optionsRoberto Ierusalimschy2005-11-281-4/+6
* VC warningsRoberto Ierusalimschy2005-10-241-3/+3