diff options
author | Ulrich Drepper <drepper@redhat.com> | 2001-02-09 17:02:23 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2001-02-09 17:02:23 +0000 |
commit | f126ef6731021d7796f88800eb59106388683280 (patch) | |
tree | a83034b45cbc94d0923ea5d4e5175257a7d781ca /manual | |
parent | 90feeaa2ebef8b807cfb774bcbe311325eae0b3b (diff) | |
download | glibc-f126ef6731021d7796f88800eb59106388683280.zip glibc-f126ef6731021d7796f88800eb59106388683280.tar.gz glibc-f126ef6731021d7796f88800eb59106388683280.tar.bz2 |
Update.
2001-02-09 Ulrich Drepper <drepper@redhat.com>
* locale/programs/linereader.c (get_ident): Stop loop if EOF. Use
lr_ungetc to push back last read character.
* locale/programs/linereader.h (lr_ungetc): Don't push back is
character is EOF.
(lr_ignore_rest): Don't warn about garbage if it is really the end
of the file.
* manual/Makefile: Use ifnottext and not ifinfo to protect Top node
definition.
Diffstat (limited to 'manual')
-rw-r--r-- | manual/libc.texinfo | 4 | ||||
-rw-r--r-- | manual/stdio.texi | 8 | ||||
-rw-r--r-- | manual/sysinfo.texi | 8 |
3 files changed, 11 insertions, 9 deletions
diff --git a/manual/libc.texinfo b/manual/libc.texinfo index 684c49d..365cbd9 100644 --- a/manual/libc.texinfo +++ b/manual/libc.texinfo @@ -101,13 +101,13 @@ Foundation. @end titlepage @page -@ifinfo +@ifnottex @node Top, Introduction, (dir), (dir) @top Main Menu This is Edition @value{EDITION}, last updated @value{UPDATED}, of @cite{The GNU C Library Reference Manual}, for Version @value{VERSION} of the GNU C Library. -@end ifinfo +@end ifnottex @include top-menu.texi @include chapters.texi diff --git a/manual/stdio.texi b/manual/stdio.texi index f65e9c2..d6dada1 100644 --- a/manual/stdio.texi +++ b/manual/stdio.texi @@ -4222,10 +4222,10 @@ This function is declared in the @file{stdio_ext.h} header. @comment stdio_ext.h @comment GNU -@deftypefun size_t __fpending (FILE *@var{stream}) -The @code{__fpending} function returns the number of bytes currently in -the output buffer. This function should not be used on buffers in read -mode or opened read-only. +@deftypefun size_t __fpending (FILE *@var{stream}) The @code{__fpending} +function returns the number of bytes currently in the output buffer. +For wide-oriented stream the measuring unit is wide characters. This +function should not be used on buffers in read mode or opened read-only. This function is declared in the @file{stdio_ext.h} header. @end deftypefun diff --git a/manual/sysinfo.texi b/manual/sysinfo.texi index 1768d01..187314a 100644 --- a/manual/sysinfo.texi +++ b/manual/sysinfo.texi @@ -341,6 +341,7 @@ gets stored. @end menu @node Mount Information, Mount-Unmount-Remount, , Filesystem Handling +@subsection Mount Information For some programs it is desirable and necessary to access information about whether a certain filesystem is mounted and, if it is, where, or @@ -384,7 +385,7 @@ names should always be used. @end menu @node fstab -@subsection The @file{fstab} file +@subsubsection The @file{fstab} file The internal representation for entries of the file is @w{@code{struct fstab}}, defined in @file{fstab.h}. @@ -536,7 +537,7 @@ returns a @code{NULL} pointer. @node mtab -@subsection The @file{mtab} file +@subsubsection The @file{mtab} file The following functions and data structure access the @file{mtab} file. @comment mntent.h @@ -746,7 +747,7 @@ when all options have to be processed one is better off with using the @end deftypefun @node Other Mount Information -@subsection Other (Non-libc) Sources of Mount Information +@subsubsection Other (Non-libc) Sources of Mount Information On a system with a Linux kernel and the @code{proc} filesystem, you can get information on currently mounted filesystems from the file @@ -757,6 +758,7 @@ to date. @node Mount-Unmount-Remount, , Mount Information, Filesystem Handling +@subsection Mount, Unmount, Remount This section describes the functions for mounting, unmounting, and remounting filesystems. |