From 0c13fa1c14130cc9e6f1d282ba54d7bbc7f232ff Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 14 Oct 2006 09:17:38 +0000 Subject: correctly apply combining marks in last column when auto-margins are in use. --- term.c | 1 + 1 file changed, 1 insertion(+) diff --git a/term.c b/term.c index d5acd12..83a7c42 100644 --- a/term.c +++ b/term.c @@ -408,6 +408,7 @@ static void process_char(struct uuterm *t, unsigned c) case 0: y = t->y; x = t->x; + if (t->am) x++; if (!x--) { /* nothing to combine at home position */ if (!y--) return; -- cgit v1.2.1