doc: Mention NetBSD bugs.
authorBruno Haible <bruno@clisp.org>
Thu, 5 Jan 2012 18:08:21 +0000 (19:08 +0100)
committerBruno Haible <bruno@clisp.org>
Thu, 5 Jan 2012 18:08:21 +0000 (19:08 +0100)
* doc/posix-functions/*printf.texi: Mention a NetBSD 5.1 bug.
* doc/posix-functions/nl_langinfo.texi: Mention another NetBSD 5.1 bug.

18 files changed:
ChangeLog
doc/posix-functions/dprintf.texi
doc/posix-functions/fprintf.texi
doc/posix-functions/fwprintf.texi
doc/posix-functions/nl_langinfo.texi
doc/posix-functions/printf.texi
doc/posix-functions/snprintf.texi
doc/posix-functions/sprintf.texi
doc/posix-functions/swprintf.texi
doc/posix-functions/vdprintf.texi
doc/posix-functions/vfprintf.texi
doc/posix-functions/vfwprintf.texi
doc/posix-functions/vprintf.texi
doc/posix-functions/vsnprintf.texi
doc/posix-functions/vsprintf.texi
doc/posix-functions/vswprintf.texi
doc/posix-functions/vwprintf.texi
doc/posix-functions/wprintf.texi

index 6dd4344..ea441d1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2012-01-05  Bruno Haible  <bruno@clisp.org>
 
+       doc: Mention NetBSD bugs.
+       * doc/posix-functions/*printf.texi: Mention a NetBSD 5.1 bug.
+       * doc/posix-functions/nl_langinfo.texi: Mention another NetBSD 5.1 bug.
+
+2012-01-05  Bruno Haible  <bruno@clisp.org>
+
        strtoumax tests: Enhance tests.
        * tests/test-strtoumax.c (main): Add tests for large values.
 
index 579a779..0ded069 100644 (file)
@@ -29,6 +29,10 @@ AIX 7.1.
 Portability problems not fixed by Gnulib:
 @itemize
 @item
+When formatting an integer with grouping flag, this function inserts thousands
+separators even in the "C" locale on some platforms:
+NetBSD 5.1.
+@item
 On some platforms, this function does not set @code{errno} or the
 stream error indicator on attempts to write to a read-only stream:
 Cygwin 1.7.9.
index 277885e..fc73c6f 100644 (file)
@@ -87,6 +87,10 @@ mingw, MSVC 9.
 Portability problems not fixed by Gnulib:
 @itemize
 @item
+When formatting an integer with grouping flag, this function inserts thousands
+separators even in the "C" locale on some platforms:
+NetBSD 5.1.
+@item
 Attempting to write to a read-only stream fails with @code{EOF} but
 does not set the error flag for @code{ferror} on some platforms:
 glibc 2.13, cygwin 1.7.9.
index cf4628a..d6d3b14 100644 (file)
@@ -19,6 +19,10 @@ NetBSD 3.0, OpenBSD 3.8, Minix 3.1.8, HP-UX 11.00, IRIX 6.5, Solaris 2.6, Cygwin
 On AIX and Windows platforms, @code{wchar_t} is a 16-bit type and therefore cannot
 accommodate all Unicode characters.
 @item
+When formatting an integer with grouping flag, this function inserts thousands
+separators even in the "C" locale on some platforms:
+NetBSD 5.1.
+@item
 On some platforms, this function does not set @code{errno} or the
 stream error indicator on attempts to write to a read-only stream:
 Cygwin 1.7.9.
index 7cca809..cdb5668 100644 (file)
@@ -41,4 +41,9 @@ On Cygwin 1.7.0, only the charset portion of a locale designation is honored.
 On NetBSD 5.0, in some locales, @code{nl_langinfo(CRNCYSTR)} returns the
 empty string, although the local currency symbol, as returned by
 @code{localeconv()->currency_symbol}, is non-empty.
+
+@item
+On NetBSD 5.1, in the "C" locale, the results of
+@code{nl_langinfo(ABMON_1)} ... @code{nl_langinfo(ABMON_12)} are full month
+names, not abbreviated month names.
 @end itemize
index 81a3322..109173e 100644 (file)
@@ -87,6 +87,10 @@ mingw, MSVC 9.
 Portability problems not fixed by Gnulib:
 @itemize
 @item
+When formatting an integer with grouping flag, this function inserts thousands
+separators even in the "C" locale on some platforms:
+NetBSD 5.1.
+@item
 Attempting to write to a read-only stream fails with @code{EOF} but
 does not set the error flag for @code{ferror} on some platforms:
 glibc 2.13, cygwin 1.7.9.
index 14ad381..a13f530 100644 (file)
@@ -94,4 +94,8 @@ OSF/1 5.1.
 
 Portability problems not fixed by Gnulib:
 @itemize
+@item
+When formatting an integer with grouping flag, this function inserts thousands
+separators even in the "C" locale on some platforms:
+NetBSD 5.1.
 @end itemize
index 8c0529f..2ab6ffb 100644 (file)
@@ -69,4 +69,8 @@ MacOS X 10.3, FreeBSD 6.0, NetBSD 5.0.
 
 Portability problems not fixed by Gnulib:
 @itemize
+@item
+When formatting an integer with grouping flag, this function inserts thousands
+separators even in the "C" locale on some platforms:
+NetBSD 5.1.
 @end itemize
index 15640fd..edf2e7c 100644 (file)
@@ -23,4 +23,8 @@ On AIX and Windows platforms, @code{wchar_t} is a 16-bit type and therefore cann
 accommodate all Unicode characters.
 @item
 On Windows, this function does not take a buffer size as second argument.
+@item
+When formatting an integer with grouping flag, this function inserts thousands
+separators even in the "C" locale on some platforms:
+NetBSD 5.1.
 @end itemize
index 5101ee4..561038f 100644 (file)
@@ -43,6 +43,10 @@ AIX 7.1, BeOS.
 Portability problems not fixed by Gnulib:
 @itemize
 @item
+When formatting an integer with grouping flag, this function inserts thousands
+separators even in the "C" locale on some platforms:
+NetBSD 5.1.
+@item
 On some platforms, this function does not set @code{errno} or the
 stream error indicator on attempts to write to a read-only stream:
 Cygwin 1.7.9.
index 2159b43..7f5f460 100644 (file)
@@ -87,6 +87,10 @@ mingw, MSVC 9.
 Portability problems not fixed by Gnulib:
 @itemize
 @item
+When formatting an integer with grouping flag, this function inserts thousands
+separators even in the "C" locale on some platforms:
+NetBSD 5.1.
+@item
 Attempting to write to a read-only stream fails with @code{EOF} but
 does not set the error flag for @code{ferror} on some platforms:
 glibc 2.13, cygwin 1.7.9.
index 8f07e71..261f07f 100644 (file)
@@ -19,6 +19,10 @@ NetBSD 3.0, OpenBSD 3.8, Minix 3.1.8, HP-UX 11.00, IRIX 6.5, Solaris 2.6, Cygwin
 On AIX and Windows platforms, @code{wchar_t} is a 16-bit type and therefore cannot
 accommodate all Unicode characters.
 @item
+When formatting an integer with grouping flag, this function inserts thousands
+separators even in the "C" locale on some platforms:
+NetBSD 5.1.
+@item
 On some platforms, this function does not set @code{errno} or the
 stream error indicator on attempts to write to a read-only stream:
 Cygwin 1.7.9.
index 6770c00..b9e8557 100644 (file)
@@ -87,6 +87,10 @@ mingw, MSVC 9.
 Portability problems not fixed by Gnulib:
 @itemize
 @item
+When formatting an integer with grouping flag, this function inserts thousands
+separators even in the "C" locale on some platforms:
+NetBSD 5.1.
+@item
 Attempting to write to a read-only stream fails with @code{EOF} but
 does not set the error flag for @code{ferror} on some platforms:
 glibc 2.13, cygwin 1.7.9.
index 967a995..44fa369 100644 (file)
@@ -91,4 +91,8 @@ HP-UX 11, OSF/1 5.1.
 
 Portability problems not fixed by Gnulib:
 @itemize
+@item
+When formatting an integer with grouping flag, this function inserts thousands
+separators even in the "C" locale on some platforms:
+NetBSD 5.1.
 @end itemize
index f863566..7378288 100644 (file)
@@ -69,4 +69,8 @@ MacOS X 10.3, FreeBSD 6.0, NetBSD 5.0.
 
 Portability problems not fixed by Gnulib:
 @itemize
+@item
+When formatting an integer with grouping flag, this function inserts thousands
+separators even in the "C" locale on some platforms:
+NetBSD 5.1.
 @end itemize
index fd6b690..b385f5e 100644 (file)
@@ -20,4 +20,8 @@ On AIX and Windows platforms, @code{wchar_t} is a 16-bit type and therefore cann
 accommodate all Unicode characters.
 @item
 On Windows, this function does not take a buffer size as second argument.
+@item
+When formatting an integer with grouping flag, this function inserts thousands
+separators even in the "C" locale on some platforms:
+NetBSD 5.1.
 @end itemize
index 56701b3..922b71c 100644 (file)
@@ -23,6 +23,10 @@ platforms: Cygwin 1.5.x.
 On AIX and Windows platforms, @code{wchar_t} is a 16-bit type and therefore cannot
 accommodate all Unicode characters.
 @item
+When formatting an integer with grouping flag, this function inserts thousands
+separators even in the "C" locale on some platforms:
+NetBSD 5.1.
+@item
 On some platforms, this function does not set @code{errno} or the
 stream error indicator on attempts to write to a read-only stream:
 Cygwin 1.7.9.
index 05b9d94..1624e7d 100644 (file)
@@ -23,6 +23,10 @@ platforms: Cygwin 1.5.x.
 On AIX and Windows platforms, @code{wchar_t} is a 16-bit type and therefore cannot
 accommodate all Unicode characters.
 @item
+When formatting an integer with grouping flag, this function inserts thousands
+separators even in the "C" locale on some platforms:
+NetBSD 5.1.
+@item
 On some platforms, this function does not set @code{errno} or the
 stream error indicator on attempts to write to a read-only stream:
 Cygwin 1.7.9.