summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlejandro Colomar <alx@kernel.org>2023-02-05 23:04:52 +0100
committerAlejandro Colomar <alx@kernel.org>2023-02-05 23:04:52 +0100
commitf29fc8dcf0da15a596a7cdc7e5a0b2932100b522 (patch)
treeac5b1b0f6e214188470995d45b9a9794a37d3309
parenta2b262a2ae780715538f25ca390f29ba97a488ca (diff)
Various pages: Use \[rq] instead of \(rq
Signed-off-by: Alejandro Colomar <alx@kernel.org>
-rw-r--r--man2/bind.22
-rw-r--r--man2/mmap.22
-rw-r--r--man2/prctl.22
-rw-r--r--man2/socket.24
-rw-r--r--man3/rpc.36
-rw-r--r--man4/st.48
-rw-r--r--man5/tzfile.54
-rw-r--r--man7/ddp.74
-rw-r--r--man7/libc.78
-rw-r--r--man7/socket.72
-rw-r--r--man7/x25.72
-rw-r--r--man8/zdump.84
-rw-r--r--man8/zic.84
13 files changed, 26 insertions, 26 deletions
diff --git a/man2/bind.2 b/man2/bind.2
index 5b265e403..6f6cd7853 100644
--- a/man2/bind.2
+++ b/man2/bind.2
@@ -43,7 +43,7 @@ to the socket referred to by the file descriptor
.I addrlen
specifies the size, in bytes, of the address structure pointed to by
.IR addr .
-Traditionally, this operation is called \[lq]assigning a name to a socket\(rq.
+Traditionally, this operation is called \[lq]assigning a name to a socket\[rq].
.PP
It is normally necessary to assign a local address using
.BR bind ()
diff --git a/man2/mmap.2 b/man2/mmap.2
index 2df5793dd..6a9395d2c 100644
--- a/man2/mmap.2
+++ b/man2/mmap.2
@@ -273,7 +273,7 @@ Note that older kernels which do not recognize the
.B MAP_FIXED_NOREPLACE
flag will typically (upon detecting a collision with a preexisting mapping)
fall back to a
-.RB \[lq]non- MAP_FIXED \(rq
+.RB \[lq]non- MAP_FIXED \[rq]
type of behavior:
they will return an address that is different from the requested address.
Therefore, backward-compatible software
diff --git a/man2/prctl.2 b/man2/prctl.2
index be3be4c56..95f0afa01 100644
--- a/man2/prctl.2
+++ b/man2/prctl.2
@@ -998,7 +998,7 @@ data authentication key A
data authentication key B
.TP
.B PR_PAC_APGAKEY
-generic authentication \[lq]A\(rq key.
+generic authentication \[lq]A\[rq] key.
.IP
(Yes folks, there really is no generic B key.)
.RE
diff --git a/man2/socket.2 b/man2/socket.2
index 8c3add084..0caf77c50 100644
--- a/man2/socket.2
+++ b/man2/socket.2
@@ -485,8 +485,8 @@ is shown in
.BR udp (7),
.BR unix (7)
.PP
-\[lq]An Introductory 4.3BSD Interprocess Communication Tutorial\(rq
+\[lq]An Introductory 4.3BSD Interprocess Communication Tutorial\[rq]
and
-\[lq]BSD Interprocess Communication Tutorial\(rq,
+\[lq]BSD Interprocess Communication Tutorial\[rq],
reprinted in
.I UNIX Programmer's Supplementary Documents Volume 1.
diff --git a/man3/rpc.3 b/man3/rpc.3
index 786a9379e..7ebe97898 100644
--- a/man3/rpc.3
+++ b/man3/rpc.3
@@ -229,8 +229,8 @@ Generic client creation routine.
identifies the name of the remote host where the server is located.
.I proto
indicates which kind of transport protocol to use.
-The currently supported values for this field are \[lq]udp\(rq
-and \[lq]tcp\(rq.
+The currently supported values for this field are \[lq]udp\[rq]
+and \[lq]tcp\[rq].
Default timeouts are set, but can be modified using
.BR clnt_control ().
.IP
@@ -599,7 +599,7 @@ in
.BR callrpc ()
and
.BR clnt_call ().
-This procedure should be used for a \[lq]ping\(rq and nothing else.
+This procedure should be used for a \[lq]ping\[rq] and nothing else.
See also
.BR clnt_broadcast ().
.PP
diff --git a/man4/st.4 b/man4/st.4
index 773627a2e..a5e99c173 100644
--- a/man4/st.4
+++ b/man4/st.4
@@ -19,7 +19,7 @@ The
.B st
driver provides the interface to a variety of SCSI tape devices.
Currently, the driver takes control of all detected devices of type
-\[lq]sequential-access\(rq.
+\[lq]sequential-access\[rq].
The
.B st
driver uses major device number 9.
@@ -33,12 +33,12 @@ concatenated to the five lowermost bits to form the tape number.
The minor numbers can be grouped into
two sets of four numbers: the principal (auto-rewind) minor device numbers,
.IR n ,
-and the \[lq]no-rewind\(rq device numbers,
+and the \[lq]no-rewind\[rq] device numbers,
.RI ( n " + 128)."
Devices opened using the principal device number will be sent a
.B REWIND
command when they are closed.
-Devices opened using the \[lq]no-rewind\(rq device number will not.
+Devices opened using the \[lq]no-rewind\[rq] device number will not.
(Note that using an auto-rewind device for positioning the tape with,
for instance, mt does not lead to the desired result: the tape is
rewound after the mt command and the next command starts from the
@@ -755,7 +755,7 @@ found the drive with a tape in place and ready for operation.
\fBGMT_D_1600\fP(\fIx\fP)
.TQ
\fBGMT_D_800\fP(\fIx\fP)
-This \[lq]generic\(rq status information reports the current
+This \[lq]generic\[rq] status information reports the current
density setting for 9-track \(12" tape drives only.
.TP
\fBGMT_DR_OPEN\fP(\fIx\fP)
diff --git a/man5/tzfile.5 b/man5/tzfile.5
index bb026b097..aa2170479 100644
--- a/man5/tzfile.5
+++ b/man5/tzfile.5
@@ -9,8 +9,8 @@ tzfile \- timezone information
.SH DESCRIPTION
.ie '\[lq]'' .ds lq \&"\"
.el .ds lq \[lq]\"
-.ie '\(rq'' .ds rq \&"\"
-.el .ds rq \(rq\"
+.ie '\[rq]'' .ds rq \&"\"
+.el .ds rq \[rq]\"
.de q
\\$3\*(lq\\$1\*(rq\\$2
..
diff --git a/man7/ddp.7 b/man7/ddp.7
index 74ba4ee2f..019f67f16 100644
--- a/man7/ddp.7
+++ b/man7/ddp.7
@@ -103,7 +103,7 @@ contains the host network in network byte order.
The value of
.B AT_ANYNET
is a
-wildcard and also implies \[lq]this network.\(rq
+wildcard and also implies \[lq]this network.\[rq]
The
.I node
member of
@@ -112,7 +112,7 @@ contains the host node number.
The value of
.B AT_ANYNODE
is a
-wildcard and also implies \[lq]this node.\(rq The value of
+wildcard and also implies \[lq]this node.\[rq] The value of
.B ATADDR_BCAST
is a link
local broadcast address.
diff --git a/man7/libc.7 b/man7/libc.7
index 47d008b1b..1eb80f6a6 100644
--- a/man7/libc.7
+++ b/man7/libc.7
@@ -7,13 +7,13 @@
.SH NAME
libc \- overview of standard C libraries on Linux
.SH DESCRIPTION
-The term \[lq]libc\(rq is commonly used as a shorthand for
-the \[lq]standard C library\(rq
+The term \[lq]libc\[rq] is commonly used as a shorthand for
+the \[lq]standard C library\[rq]
a library of standard functions that can be used by all C programs
(and sometimes by programs in other languages).
Because of some history
(see below),
-use of the term \[lq]libc\(rq
+use of the term \[lq]libc\[rq]
to refer to the standard C library is somewhat ambiguous on Linux.
.SS glibc
By far the most widely used C library on Linux is the
@@ -51,7 +51,7 @@ there was for a while
a fork of glibc 1.x created by Linux developers who felt that glibc
development at the time was not sufficing for the needs of Linux.
Often,
-this library was referred to (ambiguously) as just \[lq]libc\(rq.
+this library was referred to (ambiguously) as just \[lq]libc\[rq].
Linux libc released major versions 2, 3, 4, and 5,
as well as many minor versions of those releases.
Linux libc4 was the last version to use the a.out binary format,
diff --git a/man7/socket.7 b/man7/socket.7
index 6a88133b8..37faf89af 100644
--- a/man7/socket.7
+++ b/man7/socket.7
@@ -400,7 +400,7 @@ UDP support for this feature is available since Linux 4.5;
TCP support is available since Linux 4.6.
.TP
.B SO_BINDTODEVICE
-Bind this socket to a particular device like \[lq]eth0\(rq,
+Bind this socket to a particular device like \[lq]eth0\[rq],
as specified in the passed interface name.
If the
name is an empty string or the option length is zero, the socket device
diff --git a/man7/x25.7 b/man7/x25.7
index 912a587e1..64a7826e2 100644
--- a/man7/x25.7
+++ b/man7/x25.7
@@ -121,7 +121,7 @@ if a reset occurred, data might be lost without notice.
.BR socket (7)
.PP
Jonathan Simon Naylor:
-\[lq]The Re-Analysis and Re-Implementation of X.25.\(rq
+\[lq]The Re-Analysis and Re-Implementation of X.25.\[rq]
The URL is
.UR ftp://ftp.pspt.fi\:/pub\:/ham\:/linux\:/ax25\:/x25doc.tgz
.UE .
diff --git a/man8/zdump.8 b/man8/zdump.8
index f77a6d194..27d8310ca 100644
--- a/man8/zdump.8
+++ b/man8/zdump.8
@@ -15,8 +15,8 @@ zdump \- timezone dumper
.SH DESCRIPTION
.ie '\[lq]'' .ds lq \&"\"
.el .ds lq \[lq]\"
-.ie '\(rq'' .ds rq \&"\"
-.el .ds rq \(rq\"
+.ie '\[rq]'' .ds rq \&"\"
+.el .ds rq \[rq]\"
.de q
\\$3\*(lq\\$1\*(rq\\$2
..
diff --git a/man8/zic.8 b/man8/zic.8
index a1955f7f3..99e28f50e 100644
--- a/man8/zic.8
+++ b/man8/zic.8
@@ -15,8 +15,8 @@ zic \- timezone compiler
.SH DESCRIPTION
.ie '\[lq]'' .ds lq \&"\"
.el .ds lq \[lq]\"
-.ie '\(rq'' .ds rq \&"\"
-.el .ds rq \(rq\"
+.ie '\[rq]'' .ds rq \&"\"
+.el .ds rq \[rq]\"
.de q
\\$3\*(lq\\$1\*(rq\\$2
..