diff options
author | mitchell <unknown> | 2019-07-11 12:50:18 -0400 |
---|---|---|
committer | mitchell <unknown> | 2019-07-11 12:50:18 -0400 |
commit | 1c9b7f6fff7e1f4436e8e8f23db7fc33ce4c5893 (patch) | |
tree | 1ac59d5d008b91f82c3c9298c734df68c4910faa | |
parent | e305512e58c726ef1855ffec4af69c90cfc9e396 (diff) | |
download | scintilla-mirror-1c9b7f6fff7e1f4436e8e8f23db7fc33ce4c5893.tar.gz |
Updated curses platform.
-rw-r--r-- | curses/ScintillaCurses.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/curses/ScintillaCurses.cxx b/curses/ScintillaCurses.cxx index a39ccbec3..4941ba344 100644 --- a/curses/ScintillaCurses.cxx +++ b/curses/ScintillaCurses.cxx @@ -1069,7 +1069,7 @@ public: char utf8[6]; int len; toutf8(key, utf8, &len); - return (AddCharUTF(utf8, len), 1); + return (InsertCharacter(utf8, len), 1); } else return (AddChar(key), 1); } else { SCNotification scn = {}; |