aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/textadept.c2
1 files changed, 2 insertions, 0 deletions
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;
}