From 370b7ea3bf5ce24e7987bd9dad9a1f7541afb1e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Pant=C5=AF=C4=8Dek?= Date: Tue, 20 Jun 2023 13:41:55 +0200 Subject: [PATCH] Fix sgr-block tests with non-breaking spaces. --- src/sgr-block.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/sgr-block.scm b/src/sgr-block.scm index 74eaf19..0e4e46c 100644 --- a/src/sgr-block.scm +++ b/src/sgr-block.scm @@ -524,7 +524,9 @@ (sgr-line-expand '(("Hello" . 5) ("\t" . 1) ("World!" . 6)) 20) - '(("Hello" . 5) (" " . 9) ("World!" . 6))) + '(("Hello" . 5) + ("\xc2\xa0\xc2\xa0\xc2\xa0\xc2\xa0\xc2\xa0\xc2\xa0\xc2\xa0\xc2\xa0\xc2\xa0" . 9) + ("World!" . 6))) )) )