aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/RESearch.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2001-04-06 12:24:21 +0000
committernyamatongwe <devnull@localhost>2001-04-06 12:24:21 +0000
commit031fdca93e03464d541a3255a92a7b5603b14a50 (patch)
treed12c6a496b4c11b3d8f3f3a30689ef9ee1fbf7a0 /src/RESearch.h
parent529ea750b146c23bd1f8c0ec0b3bbeb64689a736 (diff)
downloadscintilla-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.h3
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);