aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2003-03-04 10:53:59 +0000
committernyamatongwe <devnull@localhost>2003-03-04 10:53:59 +0000
commit9258e76edf918a09e812face4af9eb66cc8771cd (patch)
treeab73038e7420a7a3902f38457b1635d8cb4fc676 /src/Document.h
parentfbd7b1eae711e8348d57ff75b87e06ed0cc20f04 (diff)
downloadscintilla-mirror-9258e76edf918a09e812face4af9eb66cc8771cd.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/Document.h')
-rw-r--r--src/Document.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.h b/src/Document.h
index 30fdc625e..597e33171 100644
--- a/src/Document.h
+++ b/src/Document.h
@@ -192,7 +192,7 @@ public:
int NextWordStart(int pos, int delta);
int Length() { return cb.Length(); }
long FindText(int minPos, int maxPos, const char *s,
- bool caseSensitive, bool word, bool wordStart, bool regExp, int *length);
+ bool caseSensitive, bool word, bool wordStart, bool regExp, bool posix, int *length);
long FindText(int iMessage, unsigned long wParam, long lParam);
const char *SubstituteByPosition(const char *text, int *length);
int LinesTotal();