From 4f15e1572d128d32472367b89cb884c063d26ff6 Mon Sep 17 00:00:00 2001 From: dzaima Date: Wed, 17 May 2023 20:50:21 +0300 Subject: [PATCH] =?UTF-8?q?disallow=20=E2=80=A2Out=20=E2=8B=880?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/utf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/utf.c b/src/utils/utf.c index e44ec221..016b2785 100644 --- a/src/utils/utf.c +++ b/src/utils/utf.c @@ -131,7 +131,7 @@ void fprintsB(FILE* f, B x) { for (usz i = 0; i < ia; i++) { B c = GetU(x, i); if (isC32(c)) fprintCodepoint(f, o2cG(c)); -#if CATCH_ERRORS +#if !CATCH_ERRORS else if (c.u==0 || noFill(c)) fprintf(f, " "); #endif else thrM("Trying to output non-character");