From d54c43099bd71c37339dd03f487319222b335778 Mon Sep 17 00:00:00 2001 From: mitchell <70453897+orbitalquark@users.noreply.github.com> Date: Thu, 2 Dec 2021 10:48:53 -0500 Subject: Reverted forward-looking change. This change should be the next version of Scintilla after 5.1.4. --- src/textadept.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/textadept.c b/src/textadept.c index d01553ee..a4ab9ef6 100644 --- a/src/textadept.c +++ b/src/textadept.c @@ -1148,6 +1148,8 @@ static int call_scintilla( len = SS(view, msg, wparam, 0); if (wtype == SLEN) wparam = len; text = malloc(len + 1), text[len] = '\0'; + if (msg == SCI_GETTEXT || msg == SCI_GETSELTEXT || msg == SCI_GETCURLINE) + len--; // Scintilla appends '\0' for these messages; compensate lparam = (sptr_t)text; } -- cgit v1.2.3