From 8500cca21c04fb2ae24f27af4f3d270040e511b0 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 562628d22b..56a3a07ff9 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