From bcab77e266c37e2f1cbb74006e9b927ea4f99dfb Mon Sep 17 00:00:00 2001 From: nicm Date: Sat, 22 Apr 2017 08:33:28 +0000 Subject: [PATCH] We need to collect UTF-8 characters so that width != 1 characters are correctly flushed. --- input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/input.c b/input.c index 0b667390..34fa7a9c 100644 --- a/input.c +++ b/input.c @@ -2011,7 +2011,7 @@ input_utf8_close(struct input_ctx *ictx) (int)ud->size, ud->data, ud->width); utf8_copy(&ictx->cell.cell.data, ud); - screen_write_cell(&ictx->ctx, &ictx->cell.cell); + screen_write_collect_add(&ictx->ctx, &ictx->cell.cell); return (0); }