diff options
author | nyamatongwe <devnull@localhost> | 2008-06-29 09:18:49 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2008-06-29 09:18:49 +0000 |
commit | ff418c5610a1e43014ad61308170edca5ae6bc9e (patch) | |
tree | 641f3e3b4b1237131a62c7089333109d3e4a80b8 /src/Editor.cxx | |
parent | acf7e38fb64dc16869b1d8b3bbb8f285053be90c (diff) | |
download | scintilla-mirror-ff418c5610a1e43014ad61308170edca5ae6bc9e.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; |