From: Bruno Haible Date: Tue, 21 Jul 2026 10:02:14 +0000 (+0200) Subject: mbiter-aux: Avoid gcc -Wcomment warning. X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4fda144056a0eb99bd4fbdbd8f77ed67f79fdcd8;p=thirdparty%2Fgnulib.git mbiter-aux: Avoid gcc -Wcomment warning. Reported by G. Branden Robinson in . * lib/mbiter-aux.c (mbiter_is_utf8): Tweak comment. --- diff --git a/ChangeLog b/ChangeLog index 57d0203c19..bd8952adf7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2026-07-21 Bruno Haible + + mbiter-aux: Avoid gcc -Wcomment warning. + Reported by G. Branden Robinson in + . + * lib/mbiter-aux.c (mbiter_is_utf8): Tweak comment. + 2026-07-19 Bruno Haible physmem: On NetBSD, consider the available swap space. diff --git a/lib/mbiter-aux.c b/lib/mbiter-aux.c index 125e02ebe3..c534b32c44 100644 --- a/lib/mbiter-aux.c +++ b/lib/mbiter-aux.c @@ -29,7 +29,7 @@ mbiter_is_utf8 (int *cache) if (*cache < 0) { /* UTF-8 is the only encoding in use which maps the bytes 0xC4 0x80 - to U+0100. (See libiconv/tests/*.TXT for all the mapping tables.) + to U+0100. (See libiconv/tests/?*.TXT for all the mapping tables.) We can assume that in this case, the char32_t encoding is Unicode (not platform-dependent like for other locale encodings). */ mbstate_t state; mbszero (&state);