From aa034817eb70a592cfb00d2475cd2601aa36e431 Mon Sep 17 00:00:00 2001 From: =?utf8?q?P=C3=A1draig=20Brady?=
Date: Tue, 19 Nov 2024 18:11:21 +0000 Subject: [PATCH] unicodeio: avoid iconv issues for most ASCII characters * lib/unicodeio.c (print_unicode_char): Avoid unicode_to_mb() for most ASCII characters, to avoid iconv() issues which were seen on macOS. Addresses https://bugs.gnu.org/74428 --- ChangeLog | 8 ++++++++ lib/unicodeio.c | 18 +++++++++++++----- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 71106fcc6d..7ea28b4f95 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2024-11-19 Pádraig Brady
+
+ unicodeio: avoid iconv issues for most ASCII characters
+ * lib/unicodeio.c (print_unicode_char): Avoid unicode_to_mb()
+ for mose ASCII characters, to avoid iconv() issues
+ which were seen on macOS.
+ Addresses https://bugs.gnu.org/74428
+
2024-11-19 Bruno Haible