diff options
| author | Zufu Liu <unknown> | 2019-11-02 08:49:56 +1100 |
|---|---|---|
| committer | Zufu Liu <unknown> | 2019-11-02 08:49:56 +1100 |
| commit | bbbb2b963955b4598627371c4414e8cb452301f1 (patch) | |
| tree | ccbdaca52124497fdb9f64937719f2558eee2bd4 | |
| parent | 56fa42417b5feaae7618e841e2e033126be76d78 (diff) | |
| download | scintilla-mirror-bbbb2b963955b4598627371c4414e8cb452301f1.tar.gz | |
Backport: Fix typo in comment.
Backport of changeset 7752:a5aecff704be.
| -rw-r--r-- | win32/ScintillaWin.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/ScintillaWin.cxx b/win32/ScintillaWin.cxx index 12a97e629..a04b03fa5 100644 --- a/win32/ScintillaWin.cxx +++ b/win32/ScintillaWin.cxx @@ -1134,7 +1134,7 @@ sptr_t ScintillaWin::HandleCompositionInline(uptr_t, sptr_t lParam) { return i == SC_INDICATOR_TARGET; }); if (!onlyTarget) { - // CS_NOMOVECARET: keep caret at beginning if composition string which already moved in InsertCharacter(). + // CS_NOMOVECARET: keep caret at beginning of composition string which already moved in InsertCharacter(). // GCS_CURSORPOS: current caret position is provided by IME. Sci::Position imeEndToImeCaretU16 = -static_cast<Sci::Position>(wcs.size()); if (!(lParam & CS_NOMOVECARET) && (lParam & GCS_CURSORPOS)) { |
