summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@cvs.openbsd.org>2013-10-19 18:15:40 +0000
committerIngo Schwarze <schwarze@cvs.openbsd.org>2013-10-19 18:15:40 +0000
commitb644a1f743b064f39b07db2e068a72fa1317e622 (patch)
treea868c4d4fdabdf4270b00ce6417737fa69376173
parent45843dc3b26d9128d079ee7202d9234a5c46090b (diff)
fix a few obvious .Ar markup errors (unfortunately, there are many more)
found while working on mandoc apropos
-rw-r--r--bin/csh/csh.18
-rw-r--r--gnu/usr.sbin/sendmail/sendmail/sendmail.820
-rw-r--r--usr.bin/make/make.112
-rw-r--r--usr.sbin/dhcpd/dhcpd.conf.58
-rw-r--r--usr.sbin/dhcpd/dhcpd.leases.58
5 files changed, 28 insertions, 28 deletions
diff --git a/bin/csh/csh.1 b/bin/csh/csh.1
index 7c91e183feb..cec561cdb9c 100644
--- a/bin/csh/csh.1
+++ b/bin/csh/csh.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: csh.1,v 1.67 2012/01/15 20:06:40 schwarze Exp $
+.\" $OpenBSD: csh.1,v 1.68 2013/10/19 18:15:38 schwarze Exp $
.\" $NetBSD: csh.1,v 1.10 1995/03/21 09:02:35 cgd Exp $
.\"
.\" Copyright (c) 1980, 1990, 1993
@@ -30,7 +30,7 @@
.\"
.\" @(#)csh.1 8.2 (Berkeley) 1/21/94
.\"
-.Dd $Mdocdate: January 15 2012 $
+.Dd $Mdocdate: October 19 2013 $
.Dt CSH 1
.Os
.Sh NAME
@@ -743,9 +743,9 @@ Any character may be used as the delimiter in place of
a
.Ql \e
quotes the delimiter into the
-.Ar l " "
+.Ar l
and
-.Ar r " "
+.Ar r
strings.
The character
.Ql &
diff --git a/gnu/usr.sbin/sendmail/sendmail/sendmail.8 b/gnu/usr.sbin/sendmail/sendmail/sendmail.8
index c664f75bdb6..37c1295f401 100644
--- a/gnu/usr.sbin/sendmail/sendmail/sendmail.8
+++ b/gnu/usr.sbin/sendmail/sendmail/sendmail.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: sendmail.8,v 1.37 2012/09/27 12:18:20 jmc Exp $
+.\" $OpenBSD: sendmail.8,v 1.38 2013/10/19 18:15:39 schwarze Exp $
.\"
.\" Copyright (c) 1998-2003 Sendmail, Inc. and its suppliers.
.\" All rights reserved.
@@ -13,7 +13,7 @@
.\"
.\" $Sendmail: sendmail.8,v 8.60 2011/03/07 23:44:48 ca Exp $
.\"
-.Dd $Mdocdate: September 27 2012 $
+.Dd $Mdocdate: October 19 2013 $
.Dt SENDMAIL 8
.Os
.Sh NAME
@@ -305,37 +305,37 @@ but run in the foreground.
Process jobs in queue group called
.Ar name
only.
-.It Xo Fl q Ns Op Ar \&! Ns
+.It Xo Fl q Ns Op Cm \&! Ns
.Cm I Ns Ar substr
.Xc
Limit processed jobs to those containing
.Ar substr
as a substring of the queue ID or not when
-.Em !\&
+.Cm !\&
is specified.
-.It Xo Fl q Ns Op Ar \&! Ns
+.It Xo Fl q Ns Op Cm \&! Ns
.Cm Q Ns Ar substr
.Xc
Limit processed jobs to quarantined jobs containing
.Ar substr
as a substring of the quarantine reason or not when
-.Em !\&
+.Cm !\&
is specified.
-.It Xo Fl q Ns Op Ar \&! Ns
+.It Xo Fl q Ns Op Cm \&! Ns
.Cm R Ns Ar substr
.Xc
Limit processed jobs to those containing
.Ar substr
as a substring of one of the recipients or not when
-.Em !\&
+.Cm !\&
is specified.
-.It Xo Fl q Ns Op Ar \&! Ns
+.It Xo Fl q Ns Op Cm \&! Ns
.Cm S Ns Ar substr
.Xc
Limit processed jobs to those containing
.Ar substr
as a substring of the sender or not when
-.Em !\&
+.Cm !\&
is specified.
.It Fl R Ar return
Set the amount of the message to be returned
diff --git a/usr.bin/make/make.1 b/usr.bin/make/make.1
index bd59e9a4e59..b83f20a3a19 100644
--- a/usr.bin/make/make.1
+++ b/usr.bin/make/make.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: make.1,v 1.107 2013/08/26 16:54:04 jmc Exp $
+.\" $OpenBSD: make.1,v 1.108 2013/10/19 18:15:39 schwarze Exp $
.\" $NetBSD: make.1,v 1.18 1997/03/10 21:19:53 christos Exp $
.\"
.\" Copyright (c) 1990, 1993
@@ -30,7 +30,7 @@
.\"
.\" from: @(#)make.1 8.4 (Berkeley) 3/19/94
.\"
-.Dd $Mdocdate: August 26 2013 $
+.Dd $Mdocdate: October 19 2013 $
.Dt MAKE 1
.Os
.Sh NAME
@@ -965,12 +965,12 @@ If
or
.Ar new_string
do not contain the pattern matching character
-.Ar %
+.Sq %
then it is assumed that they are
anchored at the end of each word, so only suffixes or entire
words may be replaced.
Otherwise
-.Ar %
+.Sq %
is the substring of
.Ar old_string
to be replaced in
@@ -988,9 +988,9 @@ extensions, except for the standard
style variable substitution.
.Pp
The interpretation of
-.Ar %
+.Sq %
and
-.Ar $
+.Sq $
in
.At V
variable substitutions is not mandated by POSIX, though it is
diff --git a/usr.sbin/dhcpd/dhcpd.conf.5 b/usr.sbin/dhcpd/dhcpd.conf.5
index dd04e6c13fc..2f1f04031bd 100644
--- a/usr.sbin/dhcpd/dhcpd.conf.5
+++ b/usr.sbin/dhcpd/dhcpd.conf.5
@@ -1,4 +1,4 @@
-.\" $OpenBSD: dhcpd.conf.5,v 1.13 2013/07/16 11:13:33 schwarze Exp $
+.\" $OpenBSD: dhcpd.conf.5,v 1.14 2013/10/19 18:15:39 schwarze Exp $
.\"
.\" Copyright (c) 1995, 1996, 1997, 1998, 1998, 1999
.\" The Internet Software Consortium. All rights reserved.
@@ -36,7 +36,7 @@
.\" see ``http://www.isc.org/isc''. To learn more about Vixie
.\" Enterprises, see ``http://www.vix.com''.
.\"
-.Dd $Mdocdate: July 16 2013 $
+.Dd $Mdocdate: October 19 2013 $
.Dt DHCPD.CONF 5
.Os
.Sh NAME
@@ -612,7 +612,7 @@ The
.Ic filename
statement
.Pp
-.D1 Ic filename Ar \&"filename\&" ;
+.D1 Ic filename Qq Ar filename ;
.Pp
The
.Ic filename
@@ -627,7 +627,7 @@ The
.Ic server-name
statement
.Pp
-.D1 Ic server-name Ar \&"name\&" ;
+.D1 Ic server-name Qq Ar name ;
.Pp
The
.Ic server-name
diff --git a/usr.sbin/dhcpd/dhcpd.leases.5 b/usr.sbin/dhcpd/dhcpd.leases.5
index a35a1805253..90fb3006289 100644
--- a/usr.sbin/dhcpd/dhcpd.leases.5
+++ b/usr.sbin/dhcpd/dhcpd.leases.5
@@ -1,4 +1,4 @@
-.\" $OpenBSD: dhcpd.leases.5,v 1.9 2013/07/16 11:13:33 schwarze Exp $
+.\" $OpenBSD: dhcpd.leases.5,v 1.10 2013/10/19 18:15:39 schwarze Exp $
.\"
.\" Copyright (c) 1997, 1998 The Internet Software Consortium.
.\" All rights reserved.
@@ -36,7 +36,7 @@
.\" see ``http://www.isc.org/isc''. To learn more about Vixie
.\" Enterprises, see ``http://www.vix.com''.
.\"
-.Dd $Mdocdate: July 16 2013 $
+.Dd $Mdocdate: October 19 2013 $
.Dt DHCPD.LEASES 5
.Os
.Sh NAME
@@ -123,7 +123,7 @@ hostname is recorded using the
.Ic client-hostname
statement.
.Pp
-.D1 Ic client-hostname Ar \&"hostname\&" ;
+.D1 Ic client-hostname Qq Ar hostname ;
.Pp
If the client sends its hostname using the
.Ic Hostname
@@ -131,7 +131,7 @@ option, it is recorded using the
.Ic hostname
statement.
.Pp
-.D1 Ic hostname Ar \&"hostname\&" ;
+.D1 Ic hostname Qq Ar hostname ;
.Pp
The DHCP server may determine that a lease has been misused in some
way, either because a client that has been assigned a lease NAKs it,