diff options
author | Zufu Liu <unknown> | 2025-05-24 17:43:14 +1000 |
---|---|---|
committer | Zufu Liu <unknown> | 2025-05-24 17:43:14 +1000 |
commit | aca9ce76597949b0429caa882df164702cdb92b0 (patch) | |
tree | 44756e3627ebc4b1ab19d3c086e12cc14faa8bef /src/Editor.cxx | |
parent | 32f7837ed8b70cf20e15ef34ef8448d18909910a (diff) | |
download | scintilla-mirror-aca9ce76597949b0429caa882df164702cdb92b0.tar.gz |
Remove line end space.
Diffstat (limited to 'src/Editor.cxx')
-rw-r--r-- | src/Editor.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Editor.cxx b/src/Editor.cxx index 89cf544ab..d941612b1 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -4617,7 +4617,7 @@ bool Editor::PointInSelection(Point pt) { } ptrdiff_t Editor::SelectionFromPoint(Point pt) { - // Prioritize checking inside non-empty selections since each character will be inside only 1 + // Prioritize checking inside non-empty selections since each character will be inside only 1 const SelectionPosition posChar = SPositionFromLocation(pt, true, true); for (size_t r = 0; r < sel.Count(); r++) { if (sel.Range(r).ContainsCharacter(posChar)) { |