summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Some details before release 1.0.2v1.0.2Roberto Ierusalimschy2019-03-117-20/+107
| | | | | | | - changed release number - small corrections in 'pack' - removed "about" section in .html files - added files 'HISTORY' and 'lpeg-128.gif'
* Fixed bug when resizing capture listRoberto Ierusalimschy2019-02-272-42/+51
| | | | | | | | | | Fixed the bug reported in http://lua-users.org/lists/lua-l/2018-11/msg00080.html The field 's' of the open group of captures inside a run-time capture was being reused by the open group of the results of the run-time capture, even though that open-group entry was being removed from the list and then added again.
* Avoid stack overflow when handling nested capturesRoberto Ierusalimschy2019-02-205-20/+50
| | | | | | The C code uses recursion to handle nested captures, so a too deep nesting could create a stack overflow. The fix limits the handling of nested captures to 'MAXRECLEVEL' (default is 200 levels).
* Removed extra information from RCS keyword stringsRoberto Ierusalimschy2019-02-2015-15/+15
| | | | | Version numbers and dates from RCS keyword strings removed from all source files; keeps only the file name.
* Fist version of LPeg on GITRoberto Ierusalimschy2019-02-2018-0/+7899
LPeg repository is being moved to git. Past versions won't be moved; they are still available in RCS.