diff options
| author | nyamatongwe <unknown> | 2003-03-04 10:53:59 +0000 |
|---|---|---|
| committer | nyamatongwe <unknown> | 2003-03-04 10:53:59 +0000 |
| commit | 69daddeb2a241af212edca89f6a7422e6f8a5053 (patch) | |
| tree | ab73038e7420a7a3902f38457b1635d8cb4fc676 /src/RESearch.h | |
| parent | 3767529b0e6cf365888cb7fe25e4a261116be830 (diff) | |
| download | scintilla-mirror-69daddeb2a241af212edca89f6a7422e6f8a5053.tar.gz | |
Patch from Jakub to optionally implement more POSIX compatible regular
expressions. \(..\) changes to (..)
Fixes problem where find previous would not find earlier matches on same
line.
Diffstat (limited to 'src/RESearch.h')
| -rw-r--r-- | src/RESearch.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/RESearch.h b/src/RESearch.h index 9d0f20389..8ca9cd0b8 100644 --- a/src/RESearch.h +++ b/src/RESearch.h @@ -32,7 +32,7 @@ public: bool GrabMatches(CharacterIndexer &ci); void ChSet(char c); void ChSetWithCase(char c, bool caseSensitive); - const char *Compile(const char *pat, int length, bool caseSensitive); + const char *Compile(const char *pat, int length, bool caseSensitive, bool posix); int Execute(CharacterIndexer &ci, int lp, int endp); void ModifyWord(char *s); int Substitute(CharacterIndexer &ci, char *src, char *dst); |
