summaryrefslogtreecommitdiff
path: root/lstrlib.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 'gfind' was deprecated in 5.1Roberto Ierusalimschy2010-11-191-8/+1
|
* small bug: 'find' did not detect magic chars after a \0 in a patternRoberto Ierusalimschy2010-11-161-3/+15
| | | | and did a plain search in those cases
* added support for conditional use of %Lg when using long doubleRoberto Ierusalimschy2010-11-081-8/+25
|
* comment typosRoberto Ierusalimschy2010-10-291-2/+2
|
* corrected warnings from different compilers (mostly casts and smallRoberto Ierusalimschy2010-10-251-3/+3
| | | | details)
* new module policy: C modules do not create globals and do not registerRoberto Ierusalimschy2010-07-021-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 Ierusalimschy2010-05-241-1/+2
|
* no need to handle '\0' differently from other control chars inRoberto Ierusalimschy2010-05-041-2/+2
| | | | format '%q'
* BUG: 'string.format' may get buffer when there are missing argumentsRoberto Ierusalimschy2010-04-121-4/+15
|
* patterns now accept '\0' as a regular characterRoberto Ierusalimschy2010-04-121-28/+38
|
* new implementation for Generic Buffer manipulation (using userdata asRoberto Ierusalimschy2010-04-091-22/+27
| | | | temporary buffer space)
* reorganization of switch in function 'match' (details)Roberto Ierusalimschy2010-01-041-18/+18
|
* more options moved from luaconf.h into internal filesRoberto Ierusalimschy2009-12-171-1/+19
|
* several configuration options that do not change often moved out ofRoberto Ierusalimschy2009-12-171-1/+10
| | | | luaconf.h and into more internal files
* no more compatibility code for 'string.gfind'Roberto Ierusalimschy2009-11-261-6/+2
|
* new mark LUAMOD_API for all luaopen_* functionsRoberto Ierusalimschy2009-11-241-2/+2
|
* better treatment of integer formats in string.formatRoberto Ierusalimschy2009-06-181-7/+6
|
* check for invalid use of '%' in replacement string in 'string.gsub'Roberto Ierusalimschy2009-02-031-2/+6
|
* 'posrelat' avoids problems with -(-2^31)Roberto Ierusalimschy2008-06-121-2/+2
|
* 'string.find' cannot find things after subject's endRoberto Ierusalimschy2008-04-141-2/+5
|
* detailRoberto Ierusalimschy2007-11-121-2/+2
|
* BUG: 'gsub' may go wild when wrongly called without its thirdRoberto Ierusalimschy2007-10-291-11/+10
| | | | > argument and with a large subject.
* avoid problems with 'ptrdiff_t'Roberto Ierusalimschy2007-10-251-25/+27
|
* when formatting with '%q', all control characters are codedRoberto Ierusalimschy2007-02-071-19/+14
| | | | as \nnn.
* bug: string.format("%") reads past the stringRoberto Ierusalimschy2006-09-181-2/+2
|
* avoid trailing white spacesRoberto Ierusalimschy2006-09-111-3/+3
|
* detailsRoberto Ierusalimschy2006-06-221-2/+2
|
* detail (better error message for invalid format)Roberto Ierusalimschy2006-04-261-2/+3
|
* BUG: option '%q' for string.format does not handle '\r' correctlyRoberto Ierusalimschy2006-04-121-1/+5
|
* small optimizations (lua_newtable -> lua_createtable)Roberto Ierusalimschy2005-12-291-2/+2
|
* detailRoberto Ierusalimschy2005-12-211-2/+2
|
* integer formats in 'string.format' may need to operate with larger-than-intRoberto Ierusalimschy2005-12-151-20/+37
| | | | types
* better error messageRoberto Ierusalimschy2005-10-261-2/+2
|
* string.gsub accepts a table as the replacement valueRoberto Ierusalimschy2005-10-231-52/+72
|
* avoid some warningsRoberto Ierusalimschy2005-10-191-2/+4
|
* 'string.find' as it was in 5.0Roberto Ierusalimschy2005-09-191-6/+1
|
* detailRoberto Ierusalimschy2005-08-261-2/+2
|
* luaL_openlib -> luaL_register, luaL_putchar -> luaL_addcharRoberto Ierusalimschy2005-08-151-16/+16
|
* #string is primitiveRoberto Ierusalimschy2005-08-091-3/+1
|
* "%0" stands for the whole pattern (in gsub)Roberto Ierusalimschy2005-07-311-3/+7
|
* details (alphabetical order for list of functions)Roberto Ierusalimschy2005-07-121-9/+9
|
* changes in 'string.find' and 'string.gfind' (new 'string.match' andRoberto Ierusalimschy2005-07-051-12/+43
| | | | 'string.gmatch')
* warnings in VS .NetRoberto Ierusalimschy2005-05-311-3/+3
|
* detailsRoberto Ierusalimschy2005-05-201-2/+2
|
* several small detailsRoberto Ierusalimschy2005-05-171-5/+6
|
* better quotes for strings in error messagesRoberto Ierusalimschy2005-05-161-8/+6
|
* new API function `lua_tolstring'Roberto Ierusalimschy2005-05-161-5/+5
|
* metatables for all typesRoberto Ierusalimschy2005-05-051-1/+16
|
* avoid name conflict with some spurious included header filesRoberto Ierusalimschy2005-03-221-11/+11
|
* `luaconf.h´ exports all its definitions always (so all of themRoberto Ierusalimschy2005-03-081-3/+3
| | | | must have a lua/LUA prefix).