diff options
| author | nyamatongwe <devnull@localhost> | 2001-04-06 12:24:21 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2001-04-06 12:24:21 +0000 |
| commit | 031fdca93e03464d541a3255a92a7b5603b14a50 (patch) | |
| tree | d12c6a496b4c11b3d8f3f3a30689ef9ee1fbf7a0 /src/RESearch.h | |
| parent | 529ea750b146c23bd1f8c0ec0b3bbeb64689a736 (diff) | |
| download | scintilla-mirror-031fdca93e03464d541a3255a92a7b5603b14a50.tar.gz | |
Made regular expression searching work on a line by line basis, made ^ and
$ work, made [set] work, and added a case insensitive option.
Diffstat (limited to 'src/RESearch.h')
| -rw-r--r-- | src/RESearch.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/RESearch.h b/src/RESearch.h index 62a78f48e..14a5471fd 100644 --- a/src/RESearch.h +++ b/src/RESearch.h @@ -31,7 +31,8 @@ public: void Clear(); bool GrabMatches(CharacterIndexer &ci); void ChSet(char c); - const char *Compile(char *pat); + void ChSetWithCase(char c, bool caseSensitive); + const char *Compile(const char *pat, bool caseSensitive); int Execute(CharacterIndexer &ci, int lp); void ModifyWord(char *s); int Substitute(CharacterIndexer &ci, char *src, char *dst); |
