From e2f6f58fe50e233dcd0d924bd30c94d1161c666d Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 12 Aug 2021 20:46:30 +0000 Subject: [PATCH] Make newline a style delimiter as well so they can cross multiple lines for readability. --- style.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.c b/style.c index 24b09882..89a4e63a 100644 --- a/style.c +++ b/style.c @@ -51,7 +51,7 @@ int style_parse(struct style *sy, const struct grid_cell *base, const char *in) { struct style saved; - const char delimiters[] = " ,", *cp; + const char delimiters[] = " ,\n", *cp; char tmp[256], *found; int value; size_t end;