From 8e79c4a03d9d83b38abdddbef33e6ec6b4a526bf Mon Sep 17 00:00:00 2001 From: nicm Date: Fri, 26 Jun 2026 09:38:44 +0000 Subject: [PATCH] Bump style buffer to 1024, GitHub issue 5279 from Moritz Angermann. --- style.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.c b/style.c index f386b83eb..25b8b0196 100644 --- a/style.c +++ b/style.c @@ -285,7 +285,7 @@ style_tostring(struct style *sy) struct grid_cell *gc = &sy->gc; int off = 0; const char *comma = "", *tmp = ""; - static char s[256]; + static char s[1024]; char b[21]; *s = '\0';