Oops last patch sent was a little off. This one is more correct.a

>From 5e94d1031f349050f86c943c87ccf13eb74ccbc3 Mon Sep 17 00:00:00 2001
From: Rian Hunter <r...@alum.mit.edu>
Date: Thu, 29 Jan 2015 15:00:39 -0800
Subject: [PATCH] Correct shift amount on MODE_INSERT in tputc()

When MODE_INSERT is set we'd shift characters on the same
line forward before inserting our character in tputc().
This did not account for wide characters where width != 1.
This patch makes it so we shift the correct amount.
---
 st.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/st.c b/st.c
index db9a332..a11a998 100644
--- a/st.c
+++ b/st.c
@@ -2675,8 +2675,8 @@ tputc(char *c, int len) {
 		tnewline(1);
 	}
 
-	if(IS_SET(MODE_INSERT) && term.c.x+1 < term.col)
-		memmove(gp+1, gp, (term.col - term.c.x - 1) * sizeof(Glyph));
+	if(IS_SET(MODE_INSERT) && term.c.x+width < term.col)
+		memmove(gp+width, gp, (term.col - term.c.x - width) * sizeof(Glyph));
 
 	if(term.c.x+width > term.col)
 		tnewline(1);
-- 
2.1.4

Reply via email to