Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | detail (using 'sizeof' instead of 'strlen' for length of a constantv5.3-beta | Roberto Ierusalimschy | 2014-10-22 | 1 | -2/+3 |
| | | | | string) | ||||
* | added 'l_' prefix for names that can be redefined externally | Roberto Ierusalimschy | 2014-10-22 | 1 | -4/+4 |
| | |||||
* | 'lua_stringtonum' -> 'lua_stringtonumber' | Roberto Ierusalimschy | 2014-10-17 | 1 | -4/+4 |
| | |||||
* | macros 'LUA_QL'/'LUA_QL' deprecated | Roberto Ierusalimschy | 2014-10-17 | 1 | -3/+3 |
| | |||||
* | 'lua_strtonum' -> 'lua_stringtonum' | Roberto Ierusalimschy | 2014-10-15 | 1 | -3/+3 |
| | |||||
* | details (comments) | Roberto Ierusalimschy | 2014-10-03 | 1 | -2/+2 |
| | |||||
* | detail | Roberto Ierusalimschy | 2014-10-01 | 1 | -2/+2 |
| | |||||
* | small change to avoid bug in some versions of the clang compiler | Roberto Ierusalimschy | 2014-09-26 | 1 | -2/+7 |
| | |||||
* | added some casts between integral types (to avoid warnings) | Roberto Ierusalimschy | 2014-07-29 | 1 | -2/+2 |
| | |||||
* | detail (typos in comments) | Roberto Ierusalimschy | 2014-06-30 | 1 | -9/+9 |
| | |||||
* | if numeral overflows the reading buffer, signal it as invalid input | Roberto Ierusalimschy | 2014-06-02 | 1 | -3/+5 |
| | | | | (resulting in nil) | ||||
* | no more use of 'scanf' for reading numbers | Roberto Ierusalimschy | 2014-05-21 | 1 | -17/+81 |
| | |||||
* | using a more conventional handling of stack space in 'io_readline' | Roberto Ierusalimschy | 2014-05-15 | 1 | -3/+2 |
| | |||||
* | new API function 'lua_rotate' | Roberto Ierusalimschy | 2014-05-13 | 1 | -4/+2 |
| | |||||
* | old POSIX systems need '<sys/types.h>' for 'off_t' | Roberto Ierusalimschy | 2014-05-11 | 1 | -1/+3 |
| | |||||
* | initial '*' in 'io.read' formats is deprecated | Roberto Ierusalimschy | 2014-04-15 | 1 | -4/+4 |
| | |||||
* | with 64-bit integers, file offsets do not need to be floats | Roberto Ierusalimschy | 2014-03-19 | 1 | -4/+4 |
| | |||||
* | changing prefix of configurable macros from "lua_" to "l_" | Roberto Ierusalimschy | 2014-03-13 | 1 | -26/+26 |
| | |||||
* | simpler code to read a line from a file (using 'getc' or, if present, | Roberto Ierusalimschy | 2014-03-06 | 1 | -17/+24 |
| | | | | 'getc_unlocked') | ||||
* | more uniformity for defining system-dependent features | Roberto Ierusalimschy | 2014-02-26 | 1 | -20/+21 |
| | |||||
* | 'read_all' does not need to grow buffer, as 'luaL_prepbuffsize' | Roberto Ierusalimschy | 2014-02-21 | 1 | -11/+6 |
| | | | | already does that | ||||
* | comment | Roberto Ierusalimschy | 2014-01-27 | 1 | -2/+2 |
| | |||||
* | 'io.write' writes integers directly (and correctly) | Roberto Ierusalimschy | 2013-06-07 | 1 | -3/+5 |
| | |||||
* | new read format "*i" for reading integers | Roberto Ierusalimschy | 2013-05-14 | 1 | -1/+17 |
| | |||||
* | _FILE_OFFSET_BITS usually also needs _LARGEFILE_SOURCE + easier to | Roberto Ierusalimschy | 2013-04-11 | 1 | -11/+12 |
| | | | | use default definition for 'l_fseek' in ansi systems | ||||
* | logic for checking mode for 'fopen' moved to macro 'lua_checkmode'v5.2.2 | Roberto Ierusalimschy | 2013-03-21 | 1 | -10/+11 |
| | |||||
* | detail (error message) | Roberto Ierusalimschy | 2013-03-20 | 1 | -3/+2 |
| | |||||
* | macro 'lua_checkmode' + typos in comments | Roberto Ierusalimschy | 2013-03-16 | 1 | -2/+10 |
| | |||||
* | '_fseeki64' and family not available in all Windows platforms | Roberto Ierusalimschy | 2011-11-25 | 1 | -2/+4 |
| | |||||
* | 'luaIO_Stream' -> 'luaL_Stream' | Roberto Ierusalimschy | 2011-11-14 | 1 | -2/+2 |
| | |||||
* | strutcture for file handles exported in 'lauxlib.h' | Roberto Ierusalimschy | 2011-11-11 | 1 | -6/+2 |
| | |||||
* | small bug: error message in 'io.lines' is not the error number | Roberto Ierusalimschy | 2011-11-09 | 1 | -4/+5 |
| | |||||
* | using 'long' versions of 'fseek'/'ftell' when available | Roberto Ierusalimschy | 2011-09-13 | 1 | -6/+57 |
| | |||||
* | better error message when trying to open files | Roberto Ierusalimschy | 2011-08-02 | 1 | -6/+4 |
| | |||||
* | detail: factoring in common code for opening files and checking for | Roberto Ierusalimschy | 2011-07-28 | 1 | -16/+14 |
| | | | | errors | ||||
* | use standard "underscore + uppercases" for reserved keys in the registry | Roberto Ierusalimschy | 2011-06-27 | 1 | -2/+2 |
| | |||||
* | change in the representation of file handles | Roberto Ierusalimschy | 2011-06-21 | 1 | -139/+128 |
| | |||||
* | returns for file-related functions and process-related functions | Roberto Ierusalimschy | 2011-03-03 | 1 | -61/+12 |
| | | | | unified in 'auxlib' | ||||
* | correct interpretation of return value from pclose | Roberto Ierusalimschy | 2011-02-21 | 1 | -28/+34 |
| | |||||
* | p-close returns "correct" status plus type of termination | Roberto Ierusalimschy | 2011-02-10 | 1 | -16/+36 |
| | |||||
* | detail (cleaning trailing spaces) | Roberto Ierusalimschy | 2011-01-26 | 1 | -2/+2 |
| | |||||
* | new function 'luaL_setmetatable' | Roberto Ierusalimschy | 2010-11-10 | 1 | -3/+2 |
| | |||||
* | when reading blocks with given size, try to read whole block | Roberto Ierusalimschy | 2010-11-09 | 1 | -17/+24 |
| | | | | at once | ||||
* | when reading large files, double buffer size at each iteration | Roberto Ierusalimschy | 2010-11-08 | 1 | -4/+10 |
| | |||||
* | corrected warnings from different compilers (mostly casts and small | Roberto Ierusalimschy | 2010-10-25 | 1 | -2/+2 |
| | | | | details) | ||||
* | 'module'/'luaL_register' and associates are deprecated | Roberto Ierusalimschy | 2010-07-28 | 1 | -2/+2 |
| | |||||
* | 'lua_[gs]etenv' -> 'lua_[gs]etuservalue' | Roberto Ierusalimschy | 2010-07-25 | 1 | -4/+4 |
| | |||||
* | new module policy: C modules do not create globals and do not register | Roberto Ierusalimschy | 2010-07-02 | 1 | -3/+4 |
| | | | | | | themselves with 'require' (let 'require' do its work); new auxiliary functions luaL_newlib/luaL_newlibtable/luaL_setfuncs/luaL_requiref. Old luaL_register will be deprecated. | ||||
* | no more fenvs! | Roberto Ierusalimschy | 2010-03-26 | 1 | -4/+4 |
| | |||||
* | avoid using function environments in C libraries (as it probably will | Roberto Ierusalimschy | 2010-03-17 | 1 | -24/+35 |
| | | | | be deprecated) |