diff options
author | nyamatongwe <devnull@localhost> | 2003-03-04 10:53:59 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-03-04 10:53:59 +0000 |
commit | 9258e76edf918a09e812face4af9eb66cc8771cd (patch) | |
tree | ab73038e7420a7a3902f38457b1635d8cb4fc676 /src/Document.h | |
parent | fbd7b1eae711e8348d57ff75b87e06ed0cc20f04 (diff) | |
download | scintilla-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.h | 2 |
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(); |