remove some unneeded Xo/Xc calls; from evan silberman
authorjmc <jmc@openbsd.org>
Wed, 25 Sep 2024 06:13:01 +0000 (06:13 +0000)
committerjmc <jmc@openbsd.org>
Wed, 25 Sep 2024 06:13:01 +0000 (06:13 +0000)
the original diff had a couple of errors, which i've fixed

bin/ksh/ksh.1
usr.bin/dig/dig.1
usr.bin/ssh/ssh_config.5
usr.bin/systat/systat.1

index d60769e..1cbd584 100644 (file)
@@ -1,8 +1,8 @@
-.\"    $OpenBSD: ksh.1,v 1.220 2023/10/20 18:51:09 schwarze Exp $
+.\"    $OpenBSD: ksh.1,v 1.221 2024/09/25 06:13:01 jmc Exp $
 .\"
 .\"    Public Domain
 .\"
-.Dd $Mdocdate: October 20 2023 $
+.Dd $Mdocdate: September 25 2024 $
 .Dt KSH 1
 .Os
 .Sh NAME
@@ -1800,10 +1800,8 @@ command may be used to list, change, and add to this cache (e.g.\&
 Brace expressions take the following form:
 .Bd -unfilled -offset indent
 .Sm off
-.Xo
 .Ar prefix No { Ar str1 No ,...,
 .Ar strN No } Ar suffix
-.Xc
 .Sm on
 .Ed
 .Pp
index 86145e8..1031c37 100644 (file)
@@ -1,4 +1,4 @@
-.\" $OpenBSD: dig.1,v 1.6 2022/02/17 14:08:11 jsg Exp $
+.\" $OpenBSD: dig.1,v 1.7 2024/09/25 06:13:01 jmc Exp $
 .\"
 .\" Copyright (C) 2000-2011, 2013-2018 Internet Systems Consortium, Inc. ("ISC")
 .\"
@@ -14,7 +14,7 @@
 .\" OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
 .\" PERFORMANCE OF THIS SOFTWARE.
 .\"
-.Dd $Mdocdate: February 17 2022 $
+.Dd $Mdocdate: September 25 2024 $
 .Dt DIG 1
 .Os
 .Sh NAME
@@ -307,11 +307,9 @@ The query options are:
 .Cm aaflag
 .Xc
 A synonym for
-.Xo
 .Cm + Ns
 .Op Cm no Ns
 .Cm aaonly .
-.Xc
 .It Xo
 .Cm + Ns
 .Op Cm no Ns
@@ -413,11 +411,9 @@ is automatically set when
 is in use, to better emulate the default queries from a name server.
 .Pp
 This option was formerly called
-.Xo
 .Cm + Ns
 .Op Cm no Ns
 .Cm sit
-.Xc
 (Server Identity Token).
 In BIND 9.10.0 through BIND 9.10.2,
 it sent the experimental option code 65001.
@@ -425,17 +421,13 @@ This was changed to option code 10 in BIND 9.10.3 when the DNS
 COOKIE option was allocated.
 .Pp
 The
-.Xo
 .Cm + Ns
 .Op Cm no Ns
 .Cm sit
-.Xc
 option is now deprecated, but has been retained as a synonym for
-.Xo
 .Cm + Ns
 .Op Cm no Ns
 .Cm cookie
-.Xc
 for backward compatibility within the BIND 9.10 branch.
 .It Xo
 .Cm + Ns
@@ -453,11 +445,9 @@ the key id is displayed as the replacement, e.g. "[ key id = value ]".
 .Cm defname
 .Xc
 Deprecated, treated as a synonym for
-.Xo
 .Cm + Ns
 .Op Cm no Ns
-.Cm search
-.Xc .
+.Cm search .
 .It Xo
 .Cm + Ns
 .Op Cm no Ns
@@ -650,11 +640,9 @@ is returned (on by default).
 .Cm rdflag
 .Xc
 A synonym for
-.Xo
 .Cm + Ns
 .Op Cm no Ns
-.Cm recurse
-.Xc .
+.Cm recurse .
 .It Xo
 .Cm + Ns
 .Op Cm no Ns
@@ -817,11 +805,9 @@ Display the TTL when printing the record (on by default).
 .Xc
 Use TCP when querying name servers.
 This alternate syntax to
-.Xo
 .Cm + Ns
 .Op Cm no Ns
 .Cm tcp
-.Xc
 is provided for backwards compatibility.
 The "vc" stands for "virtual circuit".
 .El
@@ -848,11 +834,9 @@ also be supplied.
 These global query options must precede the first tuple of name, class, type,
 options, flags, and query options supplied on the command line.
 Any global query options (except the
-.Xo
 .Cm + Ns
 .Op Cm no Ns
 .Cm cmd
-.Xc
 option) can be overridden by a query-specific set of query options.
 For example:
 .Bd -literal -offset indent
index f3fef23..0206513 100644 (file)
@@ -33,8 +33,8 @@
 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 .\"
-.\" $OpenBSD: ssh_config.5,v 1.402 2024/09/09 14:41:21 naddy Exp $
-.Dd $Mdocdate: September 9 2024 $
+.\" $OpenBSD: ssh_config.5,v 1.403 2024/09/25 06:13:01 jmc Exp $
+.Dd $Mdocdate: September 25 2024 $
 .Dt SSH_CONFIG 5
 .Os
 .Sh NAME
@@ -1585,14 +1585,12 @@ ProxyCommand /usr/bin/nc -X connect -x 192.0.2.0:8080 %h %p
 .Ed
 .It Cm ProxyJump
 Specifies one or more jump proxies as either
-.Xo
 .Sm off
 .Op Ar user No @
 .Ar host
 .Op : Ns Ar port
 .Sm on
-or an ssh URI
-.Xc .
+or an ssh URI.
 Multiple proxies may be separated by comma characters and will be visited
 sequentially.
 Setting this option will cause
index 2b382bf..c1d1299 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: systat.1,v 1.122 2022/11/27 22:52:21 kn Exp $
+.\"    $OpenBSD: systat.1,v 1.123 2024/09/25 06:13:01 jmc Exp $
 .\"    $NetBSD: systat.1,v 1.6 1996/05/10 23:16:39 thorpej Exp $
 .\"
 .\" Copyright (c) 1985, 1990, 1993
@@ -30,7 +30,7 @@
 .\"
 .\"    @(#)systat.1    8.2 (Berkeley) 12/30/93
 .\"
-.Dd $Mdocdate: November 27 2022 $
+.Dd $Mdocdate: September 25 2024 $
 .Dt SYSTAT 1
 .Os
 .Sh NAME
@@ -265,10 +265,8 @@ The
 .Dq State
 column has the format
 .Sm off
-.Xo
 .Cm up | dn
 .Bq : Cm U | D .
-.Xc
 .Sm on
 .Sq up
 and