aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2021-08-24 11:39:57 +1000
committerNeil <nyamatongwe@gmail.com>2021-08-24 11:39:57 +1000
commitdc0398d650e75efe9641f0c48d630f2c2027281a (patch)
tree83819a98c36c4b1c6a011d9524e26eb5b87da3d3 /src/Document.cxx
parentf756e89f53b407432c7db7c4134bfdb8af94d964 (diff)
downloadscintilla-mirror-dc0398d650e75efe9641f0c48d630f2c2027281a.tar.gz
Remove line end white space.
Diffstat (limited to 'src/Document.cxx')
-rw-r--r--src/Document.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Document.cxx b/src/Document.cxx
index 01949dc5e..657191ee1 100644
--- a/src/Document.cxx
+++ b/src/Document.cxx
@@ -2081,7 +2081,7 @@ Sci::Position Document::FindText(Sci::Position minPos, Sci::Position maxPos, con
const unsigned char charStartSearch = search[0];
if (forward && ((0 == dbcsCodePage) || (CpUtf8 == dbcsCodePage && !UTF8IsTrailByte(charStartSearch)))) {
// This is a fast case where there is no need to test byte values to iterate
- // so becomes the equivalent of a memchr+memcmp loop.
+ // so becomes the equivalent of a memchr+memcmp loop.
// UTF-8 search will not be self-synchronizing when starts with trail byte
const std::string_view suffix(search + 1, lengthFind - 1);
while (pos < endSearch) {