Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | 'string.format' checks whether values for integer formats are | Roberto Ierusalimschy | 2011-08-09 | 1 | -5/+14 | |
| | | | | actually integers | |||||
* | no more errors on accesses to 'string' and strings | Roberto Ierusalimschy | 2011-06-28 | 1 | -19/+7 | |
| | ||||||
* | avoid warning about -unsigned value | Roberto Ierusalimschy | 2011-06-16 | 1 | -2/+2 | |
| | ||||||
* | better way to test overflows with string indices | Roberto Ierusalimschy | 2011-06-09 | 1 | -2/+2 | |
| | ||||||
* | more complete (and hopefuly more correct) handling of 'sizeof(char)' | Roberto Ierusalimschy | 2011-05-03 | 1 | -5/+5 | |
| | ||||||
* | 'LUA_USELONGLONG' -> 'LUA_USE_LONGLONG' | Roberto Ierusalimschy | 2011-04-20 | 1 | -2/+2 | |
| | ||||||
* | use of 'luaL_tolstring' for option '%s' in 'string.format' | Roberto Ierusalimschy | 2011-03-18 | 1 | -3/+3 | |
| | ||||||
* | trying to avoid assumption that sizeof(char)==1 | Roberto Ierusalimschy | 2011-02-07 | 1 | -2/+2 | |
| | ||||||
* | detail (cleaning trailing spaces) | Roberto Ierusalimschy | 2011-01-26 | 1 | -2/+2 | |
| | ||||||
* | 'sep' argument to 'string.rep' + 'string.rep' preallocates entire | Roberto Ierusalimschy | 2011-01-12 | 1 | -9/+23 | |
| | | | | buffer before creating resulting string | |||||
* | error when indexing strings with invalid keys | Roberto Ierusalimschy | 2010-12-20 | 1 | -7/+19 | |
| | ||||||
* | official support for floating hexa numerals | Roberto Ierusalimschy | 2010-12-10 | 1 | -1/+4 | |
| | ||||||
* | 'gfind' was deprecated in 5.1 | Roberto Ierusalimschy | 2010-11-19 | 1 | -8/+1 | |
| | ||||||
* | small bug: 'find' did not detect magic chars after a \0 in a pattern | Roberto Ierusalimschy | 2010-11-16 | 1 | -3/+15 | |
| | | | | and did a plain search in those cases | |||||
* | added support for conditional use of %Lg when using long double | Roberto Ierusalimschy | 2010-11-08 | 1 | -8/+25 | |
| | ||||||
* | comment typos | Roberto Ierusalimschy | 2010-10-29 | 1 | -2/+2 | |
| | ||||||
* | corrected warnings from different compilers (mostly casts and small | Roberto Ierusalimschy | 2010-10-25 | 1 | -3/+3 | |
| | | | | details) | |||||
* | new module policy: C modules do not create globals and do not register | Roberto Ierusalimschy | 2010-07-02 | 1 | -2/+2 | |
| | | | | | | 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. | |||||
* | added class '%g' in patterns (for graphical characters) | Roberto Ierusalimschy | 2010-05-24 | 1 | -1/+2 | |
| | ||||||
* | no need to handle '\0' differently from other control chars in | Roberto Ierusalimschy | 2010-05-04 | 1 | -2/+2 | |
| | | | | format '%q' | |||||
* | BUG: 'string.format' may get buffer when there are missing arguments | Roberto Ierusalimschy | 2010-04-12 | 1 | -4/+15 | |
| | ||||||
* | patterns now accept '\0' as a regular character | Roberto Ierusalimschy | 2010-04-12 | 1 | -28/+38 | |
| | ||||||
* | new implementation for Generic Buffer manipulation (using userdata as | Roberto Ierusalimschy | 2010-04-09 | 1 | -22/+27 | |
| | | | | temporary buffer space) | |||||
* | reorganization of switch in function 'match' (details) | Roberto Ierusalimschy | 2010-01-04 | 1 | -18/+18 | |
| | ||||||
* | more options moved from luaconf.h into internal files | Roberto Ierusalimschy | 2009-12-17 | 1 | -1/+19 | |
| | ||||||
* | several configuration options that do not change often moved out of | Roberto Ierusalimschy | 2009-12-17 | 1 | -1/+10 | |
| | | | | luaconf.h and into more internal files | |||||
* | no more compatibility code for 'string.gfind' | Roberto Ierusalimschy | 2009-11-26 | 1 | -6/+2 | |
| | ||||||
* | new mark LUAMOD_API for all luaopen_* functions | Roberto Ierusalimschy | 2009-11-24 | 1 | -2/+2 | |
| | ||||||
* | better treatment of integer formats in string.format | Roberto Ierusalimschy | 2009-06-18 | 1 | -7/+6 | |
| | ||||||
* | check for invalid use of '%' in replacement string in 'string.gsub' | Roberto Ierusalimschy | 2009-02-03 | 1 | -2/+6 | |
| | ||||||
* | 'posrelat' avoids problems with -(-2^31) | Roberto Ierusalimschy | 2008-06-12 | 1 | -2/+2 | |
| | ||||||
* | 'string.find' cannot find things after subject's end | Roberto Ierusalimschy | 2008-04-14 | 1 | -2/+5 | |
| | ||||||
* | detail | Roberto Ierusalimschy | 2007-11-12 | 1 | -2/+2 | |
| | ||||||
* | BUG: 'gsub' may go wild when wrongly called without its third | Roberto Ierusalimschy | 2007-10-29 | 1 | -11/+10 | |
| | | | | > argument and with a large subject. | |||||
* | avoid problems with 'ptrdiff_t' | Roberto Ierusalimschy | 2007-10-25 | 1 | -25/+27 | |
| | ||||||
* | when formatting with '%q', all control characters are coded | Roberto Ierusalimschy | 2007-02-07 | 1 | -19/+14 | |
| | | | | as \nnn. | |||||
* | bug: string.format("%") reads past the string | Roberto Ierusalimschy | 2006-09-18 | 1 | -2/+2 | |
| | ||||||
* | avoid trailing white spaces | Roberto Ierusalimschy | 2006-09-11 | 1 | -3/+3 | |
| | ||||||
* | details | Roberto Ierusalimschy | 2006-06-22 | 1 | -2/+2 | |
| | ||||||
* | detail (better error message for invalid format) | Roberto Ierusalimschy | 2006-04-26 | 1 | -2/+3 | |
| | ||||||
* | BUG: option '%q' for string.format does not handle '\r' correctly | Roberto Ierusalimschy | 2006-04-12 | 1 | -1/+5 | |
| | ||||||
* | small optimizations (lua_newtable -> lua_createtable) | Roberto Ierusalimschy | 2005-12-29 | 1 | -2/+2 | |
| | ||||||
* | detail | Roberto Ierusalimschy | 2005-12-21 | 1 | -2/+2 | |
| | ||||||
* | integer formats in 'string.format' may need to operate with larger-than-int | Roberto Ierusalimschy | 2005-12-15 | 1 | -20/+37 | |
| | | | | types | |||||
* | better error message | Roberto Ierusalimschy | 2005-10-26 | 1 | -2/+2 | |
| | ||||||
* | string.gsub accepts a table as the replacement value | Roberto Ierusalimschy | 2005-10-23 | 1 | -52/+72 | |
| | ||||||
* | avoid some warnings | Roberto Ierusalimschy | 2005-10-19 | 1 | -2/+4 | |
| | ||||||
* | 'string.find' as it was in 5.0 | Roberto Ierusalimschy | 2005-09-19 | 1 | -6/+1 | |
| | ||||||
* | detail | Roberto Ierusalimschy | 2005-08-26 | 1 | -2/+2 | |
| | ||||||
* | luaL_openlib -> luaL_register, luaL_putchar -> luaL_addchar | Roberto Ierusalimschy | 2005-08-15 | 1 | -16/+16 | |
| |