From 66e5abdda35d96809ed7fc2a6da6c8d0e827e7d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Fri, 1 May 2020 12:00:36 +0200 Subject: [PATCH] term: combining characters: reduce max number of combining characters --- terminal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminal.h b/terminal.h index 27188cba..b1f7ac8e 100644 --- a/terminal.h +++ b/terminal.h @@ -79,7 +79,7 @@ struct damage { struct combining_chars { uint8_t count; - wchar_t chars[5]; /* TODO: do we need this many? */ + wchar_t chars[2]; /* TODO: how many do we need? */ }; struct row {