aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/RESearch.h
diff options
context:
space:
mode:
authornyamatongwe <unknown>2001-04-06 12:24:21 +0000
committernyamatongwe <unknown>2001-04-06 12:24:21 +0000
commit71354442f8bc2c029c7341dff14902f9b6e78fda (patch)
treed12c6a496b4c11b3d8f3f3a30689ef9ee1fbf7a0 /src/RESearch.h
parent508b1b5ca03dffc1ec2d5a98a378da4cdd30ef84 (diff)
downloadscintilla-mirror-71354442f8bc2c029c7341dff14902f9b6e78fda.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);