From 200969d8ebed76c9b82837406a87cc767fafac1b Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 26 Dec 2012 14:00:23 -0800 Subject: [PATCH] Correct name of POSIX.1-2001. * doc/posix-functions/fgetc.texi (fgetc): * doc/posix-functions/fgets.texi (fgets): * doc/posix-functions/fread.texi (fread): * doc/posix-functions/fscanf.texi (fscanf): * doc/posix-functions/getc.texi (getc): * doc/posix-functions/getchar.texi (getchar): * doc/posix-functions/scanf.texi (scanf): POSIX.1-2001, not POSIX-2001. --- ChangeLog | 10 ++++++++++ doc/posix-functions/fgetc.texi | 2 +- doc/posix-functions/fgets.texi | 2 +- doc/posix-functions/fread.texi | 2 +- doc/posix-functions/fscanf.texi | 2 +- doc/posix-functions/getc.texi | 2 +- doc/posix-functions/getchar.texi | 2 +- doc/posix-functions/scanf.texi | 2 +- 8 files changed, 17 insertions(+), 7 deletions(-) diff --git a/ChangeLog b/ChangeLog index b7b6a16409..b50db1ce78 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,15 @@ 2012-12-27 Paul Eggert + Correct name of POSIX.1-2001. + * doc/posix-functions/fgetc.texi (fgetc): + * doc/posix-functions/fgets.texi (fgets): + * doc/posix-functions/fread.texi (fread): + * doc/posix-functions/fscanf.texi (fscanf): + * doc/posix-functions/getc.texi (getc): + * doc/posix-functions/getchar.texi (getchar): + * doc/posix-functions/scanf.texi (scanf): + POSIX.1-2001, not POSIX-2001. + doc: move README into manual * README: Move contents to new file doc/gnulib-readme.texi. Replace with a one-line summary. diff --git a/doc/posix-functions/fgetc.texi b/doc/posix-functions/fgetc.texi index 55033fa258..84092304f0 100644 --- a/doc/posix-functions/fgetc.texi +++ b/doc/posix-functions/fgetc.texi @@ -18,7 +18,7 @@ mingw, MSVC 9. Portability problems not fixed by Gnulib: @itemize @item -C99 and POSIX-2001 and later require end-of-file to be sticky, that +C99 and POSIX.1-2001 and later require end-of-file to be sticky, that is, they require this function to act as if it reads end-of-file if @code{feof} would return nonzero. However, on some systems this function attempts to read from the underlying file descriptor even if diff --git a/doc/posix-functions/fgets.texi b/doc/posix-functions/fgets.texi index 2eb8aa20d4..02fb3bd4cf 100644 --- a/doc/posix-functions/fgets.texi +++ b/doc/posix-functions/fgets.texi @@ -18,7 +18,7 @@ mingw, MSVC 9. Portability problems not fixed by Gnulib: @itemize @item -C99 and POSIX-2001 and later require end-of-file to be sticky, that +C99 and POSIX.1-2001 and later require end-of-file to be sticky, that is, they require this function to act as if it reads end-of-file if @code{feof} would return nonzero. However, on some systems this function attempts to read from the underlying file descriptor even if diff --git a/doc/posix-functions/fread.texi b/doc/posix-functions/fread.texi index 626d61fdfa..6ce87fd83d 100644 --- a/doc/posix-functions/fread.texi +++ b/doc/posix-functions/fread.texi @@ -18,7 +18,7 @@ mingw, MSVC 9. Portability problems not fixed by Gnulib: @itemize @item -C99 and POSIX-2001 and later require end-of-file to be sticky, that +C99 and POSIX.1-2001 and later require end-of-file to be sticky, that is, they require this function to act as if it reads end-of-file if @code{feof} would return nonzero. However, on some systems this function attempts to read from the underlying file descriptor even if diff --git a/doc/posix-functions/fscanf.texi b/doc/posix-functions/fscanf.texi index cd3d6ec1b8..c4ef16e3fb 100644 --- a/doc/posix-functions/fscanf.texi +++ b/doc/posix-functions/fscanf.texi @@ -18,7 +18,7 @@ mingw, MSVC 9. Portability problems not fixed by Gnulib: @itemize @item -C99 and POSIX-2001 and later require end-of-file to be sticky, that +C99 and POSIX.1-2001 and later require end-of-file to be sticky, that is, they require this function to act as if it reads end-of-file if @code{feof} would return nonzero. However, on some systems this function attempts to read from the underlying file descriptor even if diff --git a/doc/posix-functions/getc.texi b/doc/posix-functions/getc.texi index 2069cdcb2b..763412898e 100644 --- a/doc/posix-functions/getc.texi +++ b/doc/posix-functions/getc.texi @@ -18,7 +18,7 @@ mingw, MSVC 9. Portability problems not fixed by Gnulib: @itemize @item -C99 and POSIX-2001 and later require end-of-file to be sticky, that +C99 and POSIX.1-2001 and later require end-of-file to be sticky, that is, they require this function to act as if it reads end-of-file if @code{feof} would return nonzero. However, on some systems this function attempts to read from the underlying file descriptor even if diff --git a/doc/posix-functions/getchar.texi b/doc/posix-functions/getchar.texi index 37ee44b9da..f1dfe9d673 100644 --- a/doc/posix-functions/getchar.texi +++ b/doc/posix-functions/getchar.texi @@ -18,7 +18,7 @@ mingw, MSVC 9. Portability problems not fixed by Gnulib: @itemize @item -C99 and POSIX-2001 and later require end-of-file to be sticky, that +C99 and POSIX.1-2001 and later require end-of-file to be sticky, that is, they require this function to act as if it reads end-of-file if @code{feof} would return nonzero. However, on some systems this function attempts to read from the underlying file descriptor even if diff --git a/doc/posix-functions/scanf.texi b/doc/posix-functions/scanf.texi index 0948e5f208..05a3187352 100644 --- a/doc/posix-functions/scanf.texi +++ b/doc/posix-functions/scanf.texi @@ -18,7 +18,7 @@ mingw, MSVC 9. Portability problems not fixed by Gnulib: @itemize @item -C99 and POSIX-2001 and later require end-of-file to be sticky, that +C99 and POSIX.1-2001 and later require end-of-file to be sticky, that is, they require this function to act as if it reads end-of-file if @code{feof} would return nonzero. However, on some systems this function attempts to read from the underlying file descriptor even if -- 2.39.5