Various pages: Remove redundant "\\ " to escape spaces

Reported-by: Alejandro Colomar (man-pages) <alx.manpages@gmail.com>
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
This commit is contained in:
Michael Kerrisk 2021-01-08 12:27:16 +01:00
parent 51ebfb92a9
commit 2c916a1d3c
6 changed files with 14 additions and 14 deletions

View File

@ -27,7 +27,7 @@
getent \- get entries from Name Service Switch libraries getent \- get entries from Name Service Switch libraries
.SH SYNOPSIS .SH SYNOPSIS
.nf .nf
.B getent\ [\fIoption\fP]...\ \fIdatabase\fP\ \fIkey\fP... .B getent [\fIoption\fP]... \fIdatabase\fP \fIkey\fP...
.fi .fi
.SH DESCRIPTION .SH DESCRIPTION
The The

View File

@ -31,12 +31,12 @@ getxattr, lgetxattr, fgetxattr \- retrieve an extended attribute value
.B #include <sys/types.h> .B #include <sys/types.h>
.B #include <sys/xattr.h> .B #include <sys/xattr.h>
.PP .PP
.BI "ssize_t getxattr(const char\ *" path ", const char\ *" name , .BI "ssize_t getxattr(const char *" path ", const char *" name ,
.BI " void\ *" value ", size_t " size ); .BI " void *" value ", size_t " size );
.BI "ssize_t lgetxattr(const char\ *" path ", const char\ *" name , .BI "ssize_t lgetxattr(const char *" path ", const char *" name ,
.BI " void\ *" value ", size_t " size ); .BI " void *" value ", size_t " size );
.BI "ssize_t fgetxattr(int " fd ", const char\ *" name , .BI "ssize_t fgetxattr(int " fd ", const char *" name ,
.BI " void\ *" value ", size_t " size ); .BI " void *" value ", size_t " size );
.fi .fi
.fam T .fam T
.SH DESCRIPTION .SH DESCRIPTION

View File

@ -32,11 +32,11 @@ listxattr, llistxattr, flistxattr \- list extended attribute names
.B #include <sys/types.h> .B #include <sys/types.h>
.B #include <sys/xattr.h> .B #include <sys/xattr.h>
.PP .PP
.BI "ssize_t listxattr(const char\ *" path ", char\ *" list \ .BI "ssize_t listxattr(const char *" path ", char *" list \
", size_t " size ); ", size_t " size );
.BI "ssize_t llistxattr(const char\ *" path ", char\ *" list \ .BI "ssize_t llistxattr(const char *" path ", char *" list \
", size_t " size ); ", size_t " size );
.BI "ssize_t flistxattr(int " fd ", char\ *" list ", size_t " size ); .BI "ssize_t flistxattr(int " fd ", char *" list ", size_t " size );
.fi .fi
.fam T .fam T
.SH DESCRIPTION .SH DESCRIPTION

View File

@ -83,8 +83,8 @@ Feature Test Macro Requirements for glibc (see
|| /* Glibc <= 2.19: */ _SVID_SOURCE || /* Glibc <= 2.19: */ _SVID_SOURCE
.fi .fi
.PP .PP
.BR setpgrp "()\ (BSD)," .BR setpgrp "() (BSD),"
.BR getpgrp "()\ (BSD):" .BR getpgrp "() (BSD):"
.nf .nf
[These are available only before glibc 2.19] [These are available only before glibc 2.19]
_BSD_SOURCE && _BSD_SOURCE &&

View File

@ -2064,7 +2064,7 @@ The fields, in order, with their proper
format specifiers, are listed below. format specifiers, are listed below.
Whether or not certain of these fields display valid information is governed by Whether or not certain of these fields display valid information is governed by
a ptrace access mode a ptrace access mode
.BR PTRACE_MODE_READ_FSCREDS "\ |\ " PTRACE_MODE_NOAUDIT .BR PTRACE_MODE_READ_FSCREDS " | " PTRACE_MODE_NOAUDIT
check (refer to check (refer to
.BR ptrace (2)). .BR ptrace (2)).
If the check denies access, then the field value is displayed as 0. If the check denies access, then the field value is displayed as 0.

View File

@ -90,7 +90,7 @@ Feature Test Macro Requirements for glibc (see
.RE .RE
.PP .PP
.BR acct (): .BR acct ():
_BSD_SOURCE || (_XOPEN_SOURCE && _XOPEN_SOURCE\ <\ 500) _BSD_SOURCE || (_XOPEN_SOURCE && _XOPEN_SOURCE < 500)
.RE .RE
.PP .PP
The The