diff options
author | nyamatongwe <unknown> | 2008-06-29 09:18:49 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2008-06-29 09:18:49 +0000 |
commit | c0e21edce865dad4431e8861cefa719f05d41baf (patch) | |
tree | 641f3e3b4b1237131a62c7089333109d3e4a80b8 /src/Editor.cxx | |
parent | 9659de1f4d46343708afe84f05d54b019f55c315 (diff) | |
download | scintilla-mirror-c0e21edce865dad4431e8861cefa719f05d41baf.tar.gz |
Simon Steele's modification to allow replacing the regular
expression implementation.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 3b6e7a2c3..95664e2b1 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -4806,7 +4806,7 @@ long Editor::FindText( (wParam & SCFIND_WHOLEWORD) != 0, (wParam & SCFIND_WORDSTART) != 0, (wParam & SCFIND_REGEXP) != 0, - (wParam & SCFIND_POSIX) != 0, + wParam, &lengthFound); if (pos != -1) { ft->chrgText.cpMin = pos; @@ -4850,7 +4850,7 @@ long Editor::SearchText( (wParam & SCFIND_WHOLEWORD) != 0, (wParam & SCFIND_WORDSTART) != 0, (wParam & SCFIND_REGEXP) != 0, - (wParam & SCFIND_POSIX) != 0, + wParam, &lengthFound); } else { pos = pdoc->FindText(searchAnchor, 0, txt, @@ -4858,7 +4858,7 @@ long Editor::SearchText( (wParam & SCFIND_WHOLEWORD) != 0, (wParam & SCFIND_WORDSTART) != 0, (wParam & SCFIND_REGEXP) != 0, - (wParam & SCFIND_POSIX) != 0, + wParam, &lengthFound); } @@ -4880,7 +4880,7 @@ long Editor::SearchInTarget(const char *text, int length) { (searchFlags & SCFIND_WHOLEWORD) != 0, (searchFlags & SCFIND_WORDSTART) != 0, (searchFlags & SCFIND_REGEXP) != 0, - (searchFlags & SCFIND_POSIX) != 0, + searchFlags, &lengthFound); if (pos != -1) { targetStart = pos; |