Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | detail (typos in comments) | Roberto Ierusalimschy | 2014-06-30 | 1 | -3/+3 | |
| | ||||||
* | var-arguments to the script come from 'arg' table (not from original | Roberto Ierusalimschy | 2014-06-26 | 1 | -10/+16 | |
| | | | | 'argv' array) | |||||
* | lots of janitor work (including comments) + 'arg' table created | Roberto Ierusalimschy | 2014-06-05 | 1 | -153/+223 | |
| | | | | | before running any script + changes in the parameters and return of 'collectargs' | |||||
* | more uniformity for defining system-dependent features | Roberto Ierusalimschy | 2014-02-26 | 1 | -10/+23 | |
| | ||||||
* | still accepts initial '=' for expressions, for compatibility with old | Roberto Ierusalimschy | 2014-02-05 | 1 | -2/+5 | |
| | | | | versions (and old habits...) | |||||
* | new "calculator mode"; no need to add '=' to print expressions | Roberto Ierusalimschy | 2013-12-16 | 1 | -18/+40 | |
| | ||||||
* | detail (changing some names of macros) | Roberto Ierusalimschy | 2013-10-07 | 1 | -7/+7 | |
| | ||||||
* | pops the string from 'get_prompt' only after using it | Roberto Ierusalimschy | 2012-09-29 | 1 | -3/+4 | |
| | ||||||
* | spaces -> tabs in #defines | Roberto Ierusalimschy | 2012-05-23 | 1 | -9/+9 | |
| | ||||||
* | details (using lua_setglobal/lua_getglobal instead of explicit | Roberto Ierusalimschy | 2012-04-20 | 1 | -10/+5 | |
| | | | | use of the global table) | |||||
* | new way to handle -E option (write a mark in the registry to avoidv5.2.0 | Roberto Ierusalimschy | 2011-12-12 | 1 | -16/+7 | |
| | | | | reading environment variables) | |||||
* | new option '-E' to avoid environment variables | Roberto Ierusalimschy | 2011-08-17 | 1 | -5/+25 | |
| | ||||||
* | detail (using array instead of several variables to keep track of | Roberto Ierusalimschy | 2011-08-04 | 1 | -10/+17 | |
| | | | | enabled command-line options) | |||||
* | correct length for LUA_COPYRIGHT (without trailing '\0') | Roberto Ierusalimschy | 2011-06-16 | 1 | -2/+2 | |
| | ||||||
* | new macro 'luai_writeline' to print newlines (and flush 'stdout') | Roberto Ierusalimschy | 2011-05-26 | 1 | -3/+4 | |
| | ||||||
* | more complete (and hopefuly more correct) handling of 'sizeof(char)' | Roberto Ierusalimschy | 2011-05-03 | 1 | -2/+2 | |
| | ||||||
* | macro 'mark' renamed 'EOFMARK' ('mark' is too easy to confict, e.g. | Roberto Ierusalimschy | 2011-03-14 | 1 | -4/+4 | |
| | | | | in alllua.c) | |||||
* | detail in 'print_usage' | Roberto Ierusalimschy | 2011-02-07 | 1 | -6/+4 | |
| | ||||||
* | 'printf' replaced by 'luai_writestring' | Roberto Ierusalimschy | 2010-12-03 | 1 | -2/+2 | |
| | ||||||
* | corrected warnings from different compilers (mostly casts and small | Roberto Ierusalimschy | 2010-10-25 | 1 | -2/+2 | |
| | | | | details) | |||||
* | better error message for 'lua -e -i' | Roberto Ierusalimschy | 2010-10-18 | 1 | -5/+6 | |
| | ||||||
* | environment variables consulted by Lua may be version-specific | Roberto Ierusalimschy | 2010-07-25 | 1 | -5/+13 | |
| | ||||||
* | comand-line option '-l' creates global with given name after | Roberto Ierusalimschy | 2010-07-02 | 1 | -9/+18 | |
| | | | | requiring module | |||||
* | no more 'ccall' nor 'cpcall' functions. (With light C functions they | Roberto Ierusalimschy | 2010-04-14 | 1 | -2/+3 | |
| | | | | are obsolete.) | |||||
* | better definitions for lua_[gs]etglobal + less uses of ENVIRONINDEX | Roberto Ierusalimschy | 2010-03-13 | 1 | -5/+5 | |
| | ||||||
* | removed useless test (argv[i] cannot be NULL when i<argc) | Roberto Ierusalimschy | 2010-02-27 | 1 | -2/+1 | |
| | ||||||
* | new macro 'luai_writestringerror' | Roberto Ierusalimschy | 2010-02-18 | 1 | -8/+11 | |
| | ||||||
* | no need to flush either stderr or \n-terminated outputs | Roberto Ierusalimschy | 2010-02-11 | 1 | -4/+1 | |
| | ||||||
* | better usage messages, showing entire offending argument | Roberto Ierusalimschy | 2010-02-09 | 1 | -8/+11 | |
| | ||||||
* | new function 'luaL_cpcall' | Roberto Ierusalimschy | 2010-01-21 | 1 | -7/+4 | |
| | ||||||
* | better messages for invalid options | Roberto Ierusalimschy | 2010-01-21 | 1 | -8/+10 | |
| | ||||||
* | 'lua_cpcall' is deprecated + other small changes in 'pmain' (comments | Roberto Ierusalimschy | 2009-12-22 | 1 | -31/+28 | |
| | | | | and reordering to check arguments before running any Lua code) | |||||
* | no more pseudoindex LUA_GLOBALSINDEX; global table now accessible | Roberto Ierusalimschy | 2009-12-22 | 1 | -5/+5 | |
| | | | | through registry | |||||
* | 'lua_objlen' replaced by 'lua_rawlen', 'lua_len', and 'luaL_len' | Roberto Ierusalimschy | 2009-12-17 | 1 | -3/+5 | |
| | ||||||
* | macro name change: LUA_INIT->LUA_INIT_VAR | Roberto Ierusalimschy | 2009-12-17 | 1 | -5/+5 | |
| | ||||||
* | several configuration options that do not change often moved out of | Roberto Ierusalimschy | 2009-12-17 | 1 | -1/+64 | |
| | | | | luaconf.h and into more internal files | |||||
* | avoid using deprecated macros lua_[gs]etglobal | Roberto Ierusalimschy | 2009-12-11 | 1 | -4/+4 | |
| | ||||||
* | 'notail' -> 'noextrachars' ('notail' may confuse with tail calls) | Roberto Ierusalimschy | 2009-11-24 | 1 | -5/+5 | |
| | ||||||
* | avoid an unprotected call to 'lua_tostring' which theoretically may | Roberto Ierusalimschy | 2009-08-10 | 1 | -2/+14 | |
| | | | | cause a panicked exit | |||||
* | calls with LUA_MULTRET may leave no free slots in the stack | Roberto Ierusalimschy | 2009-07-15 | 1 | -1/+2 | |
| | ||||||
* | 'checkversion' implemented in the auxiliary library | Roberto Ierusalimschy | 2009-06-18 | 1 | -2/+2 | |
| | ||||||
* | 'fputs' changed to 'luai_writestring' + use of 'lua_checkversion' | Roberto Ierusalimschy | 2009-02-19 | 1 | -2/+3 | |
| | ||||||
* | do not use compatibility macros in Lua | Roberto Ierusalimschy | 2008-07-11 | 1 | -2/+2 | |
| | ||||||
* | message from -v option goes to stdout, as it is not an error message | Roberto Ierusalimschy | 2008-06-26 | 1 | -2/+2 | |
| | ||||||
* | GC called after errors now are called after showing error message (to | Roberto Ierusalimschy | 2008-06-26 | 1 | -3/+3 | |
| | | | | avoid problems when there are other errors during GC itself) | |||||
* | stand-alone error-message details | Roberto Ierusalimschy | 2007-09-05 | 1 | -3/+3 | |
| | ||||||
* | detail (LUA_COPYRIGHT includes release number) | Roberto Ierusalimschy | 2007-08-07 | 1 | -2/+2 | |
| | ||||||
* | traceback function moved to auxlib | Roberto Ierusalimschy | 2007-06-22 | 1 | -20/+7 | |
| | ||||||
* | error handler in 'lua.c' tries '__tostring' metamethod if error | Roberto Ierusalimschy | 2007-04-26 | 1 | -16/+23 | |
| | | | | message is not a string | |||||
* | new constant LUA_OK | Roberto Ierusalimschy | 2006-10-10 | 1 | -24/+26 | |
| |