| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | 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 |
* | 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 |
* | 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 |
* | 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 |
* | 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 |
* | 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 |
* | 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 |
* | 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 |
* | '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 |
* | 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 |
* | new option '*L' for io.read + options for io.lines | Roberto Ierusalimschy | 2010-03-03 | 1 | -24/+48 |
* | 'lua_objlen' replaced by 'lua_rawlen', 'lua_len', and 'luaL_len' | Roberto Ierusalimschy | 2009-12-17 | 1 | -2/+2 |
* | yet more options moved from luaconf.h into internal files | Roberto Ierusalimschy | 2009-12-17 | 1 | -1/+28 |
* | new mark LUAMOD_API for all luaopen_* functions | Roberto Ierusalimschy | 2009-11-24 | 1 | -2/+2 |
* | "file:write" returns "file" in case of success | Roberto Ierusalimschy | 2009-09-01 | 1 | -4/+7 |
* | ensures that argument 'mode' to 'io.open' matches "[rwa]%+?b?", to | Roberto Ierusalimschy | 2009-08-28 | 1 | -2/+11 |
* | closing a "popen" file returns the process exit status | Roberto Ierusalimschy | 2009-02-20 | 1 | -3/+8 |