diff options
author | Rich Felker <dalias@aerifal.cx> | 2006-10-14 09:17:38 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2006-10-14 09:17:38 +0000 |
commit | 0c13fa1c14130cc9e6f1d282ba54d7bbc7f232ff (patch) | |
tree | dfabaf20649d19eea8fb49d97c0ef1d4d510bfe7 | |
parent | 99cf4af9f8ce46b8138adcbf86376908fa06b56c (diff) |
correctly apply combining marks in last column when auto-margins are in use.
-rw-r--r-- | term.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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; |