Re: clang 21.1.8 squawks about `/*` nested within "mbiter-aux.c" comment

Bruno Haible via Gnulib discussion list <[email protected]> Tue, 21 Jul 2026 14:08:45 +0200
Newsgroups gmane.comp.lib.gnulib.bugs
Message-ID <5351684.qgXdJBQaxk@cagnes>
Simon Josefsson wrote:
> > -         to U+0100.  (See libiconv/tests/*.TXT for all the mapping tables.)
> > +         to U+0100.  (See libiconv/tests/?*.TXT for all the mapping tables.)
> 
> Ugh.

Why? It's a working wildcard expression, that can be used like the one before:
  $ grep '^0xC480' libiconv/tests/?*.TXT
  $ grep '0x0100$' libiconv/tests/?*.TXT

> How about
> 
> -         to U+0100.  (See libiconv/tests/*.TXT for all the mapping tables.)
> +         to U+0100.  (See *.TXT in libiconv/tests/ for all the mapping tables.)
> 
> instead?

That would have been a workaround if I had not found something less intrusive.

Bruno