summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Mention that TRE and Oniguruma bindings are incomplete. (Shmuel)Reuben Thomas2010-10-041-1/+2
| |
| * Make new libraries build on mingw and improve Makefile. (Shmuel)Reuben Thomas2010-10-042-1/+11
| |
| * Fix incorrect documentation. (Shmuel)Reuben Thomas2010-10-041-2/+1
| |
| * Remove incorrect comments and add a test. (Shmuel)Reuben Thomas2010-10-042-6/+1
| |
| * Remove GNU regex files. (Shmuel)Reuben Thomas2010-10-042-1553/+0
| |
| * Fix typo. (Shmuel)Reuben Thomas2010-10-041-1/+1
| |
| * Don't copy generated file over original; exclude SCiTE properties files from ↵Reuben Thomas2010-10-041-2/+1
| | | | | | | | dist.
| * Change name of flag in test.Reuben Thomas2010-10-031-1/+1
| |
| * Add index.txt.Reuben Thomas2010-10-031-0/+1
| |
* | Clarify what is meant by backwards searching.Reuben Thomas2010-10-051-3/+5
|/
* Use doc/index.txt as README.Reuben Thomas2010-10-032-0/+3
|
* Remove README.Reuben Thomas2010-10-031-1/+0
|
* Update date in NEWS for 2.5.0 release.Reuben Thomas2010-09-121-1/+1
|
* Add gnulib regex headers, and settings to lgnu.c and Makefile to buildReuben Thomas2010-09-124-3/+1561
| | | | | against gnulib (but the actual building must be done elsewhere at the moment).
* Remove gnu_rex.setsyntax, reimplement syntax flags as compilationReuben Thomas2010-09-123-115/+83
| | | | | | | | | | | | flags, adding the per-feature flags (which is why we need them to be numbers, not strings, so they can be combined). Hence, remove the special “syn” argument from the constructors, and alter the tests accordingly. Improve the documentation of GNU regex in one or two places. Rename the “reverse” execution flag to “backward”, for clarity.
* Fix some erroneous markup fixing in last commit but one.Reuben Thomas2010-09-101-1/+1
|
* Document the translation parameter for GNU regexs.Reuben Thomas2010-09-101-8/+13
|
* Improve documentation of syntax parameters, and make some use ofReuben Thomas2010-09-101-9/+9
| | | | markup slightly more consistent.
* Shorten if (p) free(p) to free(p) and fix a space leak in gnu.c (callReuben Thomas2010-08-204-9/+6
| | | | regfree).
* Fix permissions: remove spurious executable permissions.Reuben Thomas2010-08-0144-0/+0
|
* Write NEWS for 2.5.0.Reuben Thomas2010-08-011-0/+7
|
* Add rex_tre.mak from Shmuel.Reuben Thomas2010-08-011-0/+34
|
* Remove old commented-out -gt which is not documented in rst2html(1).Reuben Thomas2010-08-011-4/+8
| | | | | | | Change default name of app to rst2html in accordance with common installed name. Add a clean target.
* Fix up errors: mostly remove links that now point to index.txt.Reuben Thomas2010-08-011-20/+19
|
* Update version and years in license.html.Reuben Thomas2010-08-011-3/+3
|
* Make dist depend on all, and build docs as part of all.Reuben Thomas2010-08-011-1/+3
|
* Write the rest of the dist target to build a release zip.Reuben Thomas2010-08-014-2/+9
| | | | | | | Move make variable V into defaults.mak, which can be included from top-level Makefile, and used to name the zip. In release Zip, copy doc/index.txt to README.
* Remove unneeded .cvsignore files.Reuben Thomas2010-08-015-5/+0
|
* Add distribution archive and ChangeLog to ignore list.Reuben Thomas2010-08-011-0/+2
|
* Make .gitignore from .cvsignoreReuben Thomas2010-08-011-0/+0
|
* Add initialiser to avoid compiler warnings.Reuben Thomas2010-08-011-1/+1
|
* Fix fixes to NOTBOL tests. Sorry, Shmuel.Reuben Thomas2010-08-011-2/+2
|
* Add mingw makefile for GNU, from Shmuel.Reuben Thomas2010-08-011-0/+34
|
* Fix other NOTBOL tests (thanks, Shmuel!).Reuben Thomas2010-08-011-3/+3
|
* Remove out-of-date binary win32 builds, as agreed with Shmuel.Reuben Thomas2010-08-018-136/+0
|
* Document GNU library flags.Reuben Thomas2010-07-311-1/+5
|
* Simplify collection of extra compilation arguments.Reuben Thomas2010-07-314-58/+42
|
* To be more compatible with GNU autotools, make “check” target dependReuben Thomas2010-07-312-6/+4
| | | | | | | on “all”, and make previous “build” target the new “all” target. Make the comment in top-level Makefile about where to look for user settings include defaults.mak.
* Implement reverse searching in GNU, and add a test for it.Reuben Thomas2010-07-312-6/+17
|
* Fix two that use the “not beginning of line” flag (POSIX & GNU). TheyReuben Thomas2010-07-312-3/+2
| | | | | | | erroneously had the subject “^abc”, not “abc”, so would always pass (because the pattern “^abc” would never match). Of course, they still pass with the flag set, but I have confirmed that they now fail with the flag removed (whereas before they passed).
* Merge duplicate material between index.txt and manual.txt.Reuben Thomas2010-07-312-26/+16
| | | | Fix names of GNU and TRE shared library files in manual.txt.
* Remove README (use index.txt instead).Reuben Thomas2010-07-312-22/+3
|
* Simplify the build system, adding the test target to common.mak (andReuben Thomas2010-07-317-72/+25
| | | | | | renaming it “check” for compatibility with GNU autotools), and using a list of library names to perform the top-level build, check and clean targets, rather than hand-written targets for each library.
* Remove ChangeLog from repository; use git2cl to generate it.Reuben Thomas2010-07-312-845/+3
|
* Remove unnecessary .PHONY target.Reuben Thomas2010-07-311-5/+0
|
* Rename per-library makefiles to Makefile.Reuben Thomas2010-07-316-10/+10
|
* Use custom eflags codes so we can add one for backwards searching, and add a ↵Reuben Thomas2010-07-311-4/+12
| | | | reverse flag to TGnu.
* Remove a couple of eflags which can’t be used as eflags (oops).Reuben Thomas2010-07-301-7/+0
| | | | | Remove the commented-out reverse-search functions and methods (we’ll use an extra argument to the existing functions and methods instead).
* Simplify some code, and fix some formatting.Reuben Thomas2010-07-301-3/+2
|
* Add test for execution flags.Reuben Thomas2010-07-301-0/+14
|