diff options
author | ru <ru@FreeBSD.org> | 2001-08-07 15:48:51 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2001-08-07 15:48:51 +0000 |
commit | 43457588767caedd16dbf19162de0a6a435dfeda (patch) | |
tree | 0505e005ecc9492a4b759dc8e06eb138613e4aa4 /lib/libc/stdio | |
parent | 6b00d6a3ebd552afe7b0a0844e598ee70810f887 (diff) | |
download | FreeBSD-src-43457588767caedd16dbf19162de0a6a435dfeda.zip FreeBSD-src-43457588767caedd16dbf19162de0a6a435dfeda.tar.gz |
mdoc(7) police:
Avoid using parenthesis enclosure macros (.Pq and .Po/.Pc) with plain text.
Not only this slows down the mdoc(7) processing significantly, but it also
has an undesired (in this case) effect of disabling hyphenation within the
entire enclosed block.
Diffstat (limited to 'lib/libc/stdio')
-rw-r--r-- | lib/libc/stdio/ungetc.3 | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/libc/stdio/ungetc.3 b/lib/libc/stdio/ungetc.3 index f3de89d..83483be 100644 --- a/lib/libc/stdio/ungetc.3 +++ b/lib/libc/stdio/ungetc.3 @@ -61,12 +61,10 @@ stream (in reverse order). A successful intervening call, using the same stream, to one of the file positioning functions -.Po -.Xr fseek 3 , +.Xr ( fseek 3 , .Xr fsetpos 3 , or -.Xr rewind 3 -.Pc +.Xr rewind 3 ) will discard the pushed back characters. .Pp One character of push-back is guaranteed, |