From: Bruno Haible Date: Mon, 24 Jul 2023 09:10:15 +0000 (+0200) Subject: fnmatch: Update doc regarding Solaris 10. X-Git-Tag: v1.0~1038 X-Git-Url: https://gitweb.git.savannah.gnu.org/gitweb/?a=commitdiff_plain;h=dc1b379b0f263cfa1d0568d38126db6806ce7f71;p=gnulib.git fnmatch: Update doc regarding Solaris 10. * doc/posix-functions/fnmatch.texi: Move the Solaris 10 bug description to the "fixed by Gnulib" section. --- diff --git a/ChangeLog b/ChangeLog index 0d49893d95..2c40e67cc4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2023-07-24 Bruno Haible + + fnmatch: Update doc regarding Solaris 10. + * doc/posix-functions/fnmatch.texi: Move the Solaris 10 bug description + to the "fixed by Gnulib" section. + 2023-07-23 Paul Eggert timespec_get: port to Ubuntu 23.04 diff --git a/doc/posix-functions/fnmatch.texi b/doc/posix-functions/fnmatch.texi index 69560c33a6..ba76c45dd1 100644 --- a/doc/posix-functions/fnmatch.texi +++ b/doc/posix-functions/fnmatch.texi @@ -46,6 +46,12 @@ NetBSD 9.3, @c fnmatch ("x?y", "x\360\237\230\213y", 0) == 0 Android 13. @item +The @code{"?"} pattern character fails to match characters outside the +Unicode BMP on some platforms: +@c Failing test cases: +@c fnmatch ("x?y", "x\360\237\230\213y", 0) == 0 +Solaris 10. +@item In the pattern, negated character ranges (such as @code{[!a-z]}) are not supported on some platforms: @c Failing test cases: @@ -153,7 +159,7 @@ The @code{"?"} pattern character fails to match characters outside the Unicode BMP on some platforms: @c Failing test cases: @c fnmatch ("x?y", "x\360\237\230\213y", 0) == 0 -Solaris 10, Cygwin 3.4.6, +Cygwin 3.4.6, @c Failing test cases: @c fnmatch ("x?y", "x\360\237\230\213y", 0) == 0 @c fnmatch ("x[[:alnum:]]y", "x\360\220\214\260y", 0) == 0