Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 May 2012 14:16:04 +0000 (UTC)
From:      Joel Dahl <joel@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r235400 - in head: bin/expr bin/sh bin/test lib/libc/posix1e sbin/setkey usr.bin/dc usr.bin/make usr.bin/mklocale
Message-ID:  <201205131416.q4DEG4Sc086632@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: joel (doc committer)
Date: Sun May 13 14:16:04 2012
New Revision: 235400
URL: http://svn.freebsd.org/changeset/base/235400

Log:
  Minor mdoc nits.

Modified:
  head/bin/expr/expr.1
  head/bin/sh/sh.1
  head/bin/test/test.1
  head/lib/libc/posix1e/mac_prepare.3
  head/sbin/setkey/setkey.8
  head/usr.bin/dc/dc.1
  head/usr.bin/make/make.1
  head/usr.bin/mklocale/mklocale.1

Modified: head/bin/expr/expr.1
==============================================================================
--- head/bin/expr/expr.1	Sun May 13 14:02:40 2012	(r235399)
+++ head/bin/expr/expr.1	Sun May 13 14:16:04 2012	(r235400)
@@ -77,7 +77,7 @@ Operators with equal precedence are grou
 and
 .Ql } .
 .Bl -tag -width indent
-.It Ar expr1 Li | Ar expr2
+.It Ar expr1 Li \&| Ar expr2
 Return the evaluation of
 .Ar expr1
 if it is neither an empty string nor zero;

Modified: head/bin/sh/sh.1
==============================================================================
--- head/bin/sh/sh.1	Sun May 13 14:02:40 2012	(r235399)
+++ head/bin/sh/sh.1	Sun May 13 14:16:04 2012	(r235400)
@@ -375,8 +375,8 @@ The following is a list of valid operato
 .Bl -tag -width indent
 .It Control operators:
 .Bl -column "XXX" "XXX" "XXX" "XXX" "XXX" -offset center -compact
-.It Li & Ta Li && Ta Li ( Ta Li ) Ta Li \en
-.It Li ;; Ta Li ;& Ta Li ; Ta Li | Ta Li ||
+.It Li & Ta Li && Ta Li \&( Ta Li \&) Ta Li \en
+.It Li ;; Ta Li ;& Ta Li \&; Ta Li \&| Ta Li ||
 .El
 .It Redirection operators:
 .Bl -column "XXX" "XXX" "XXX" "XXX" "XXX" -offset center -compact

Modified: head/bin/test/test.1
==============================================================================
--- head/bin/test/test.1	Sun May 13 14:02:40 2012	(r235399)
+++ head/bin/test/test.1	Sun May 13 14:16:04 2012	(r235400)
@@ -43,7 +43,7 @@
 .Nm
 .Ar expression
 .Nm \&[
-.Ar expression Cm ]
+.Ar expression Cm \&]
 .Sh DESCRIPTION
 The
 .Nm

Modified: head/lib/libc/posix1e/mac_prepare.3
==============================================================================
--- head/lib/libc/posix1e/mac_prepare.3	Sun May 13 14:02:40 2012	(r235399)
+++ head/lib/libc/posix1e/mac_prepare.3	Sun May 13 14:16:04 2012	(r235400)
@@ -64,7 +64,7 @@ when the label was prepared.
 Elements are specified in a nul-terminated string, using commas to
 delimit fields.
 Element names may be prefixed with the
-.Dv ?
+.Ql \&?
 character to indicate that a failure by the kernel to retrieve that
 element should not be considered fatal.
 .Pp

Modified: head/sbin/setkey/setkey.8
==============================================================================
--- head/sbin/setkey/setkey.8	Sun May 13 14:02:40 2012	(r235399)
+++ head/sbin/setkey/setkey.8	Sun May 13 14:16:04 2012	(r235400)
@@ -130,7 +130,7 @@ are treated as comment lines.
 .Ar src Ar dst Ar protocol Ar spi
 .Op Ar extensions
 .Ar algorithm ...
-.Li ;
+.Li \&;
 .Xc
 Add an SAD entry.
 .Li add
@@ -141,7 +141,7 @@ including when the key length does not m
 .Li get
 .Op Fl 46n
 .Ar src Ar dst Ar protocol Ar spi
-.Li ;
+.Li \&;
 .Xc
 Show an SAD entry.
 .\"
@@ -149,7 +149,7 @@ Show an SAD entry.
 .Li delete
 .Op Fl 46n
 .Ar src Ar dst Ar protocol Ar spi
-.Li ;
+.Li \&;
 .Xc
 Remove an SAD entry.
 .\"
@@ -157,14 +157,14 @@ Remove an SAD entry.
 .Li deleteall
 .Op Fl 46n
 .Ar src Ar dst Ar protocol
-.Li ;
+.Li \&;
 .Xc
 Remove all SAD entries that match the specification.
 .\"
 .It Xo
 .Li flush
 .Op Ar protocol
-.Li ;
+.Li \&;
 .Xc
 Clear all SAD entries matched by the options.
 .Fl F
@@ -173,7 +173,7 @@ on the command line achieves the same fu
 .It Xo
 .Li dump
 .Op Ar protocol
-.Li ;
+.Li \&;
 .Xc
 Dumps all SAD entries matched by the options.
 .Fl D
@@ -183,7 +183,7 @@ on the command line achieves the same fu
 .Li spdadd
 .Op Fl 46n
 .Ar src_range Ar dst_range Ar upperspec Ar policy
-.Li ;
+.Li \&;
 .Xc
 Add an SPD entry.
 .\"
@@ -191,13 +191,13 @@ Add an SPD entry.
 .Li spddelete
 .Op Fl 46n
 .Ar src_range Ar dst_range Ar upperspec Fl P Ar direction
-.Li ;
+.Li \&;
 .Xc
 Delete an SPD entry.
 .\"
 .It Xo
 .Li spdflush
-.Li ;
+.Li \&;
 .Xc
 Clear all SPD entries.
 .Fl FP
@@ -205,7 +205,7 @@ on the command line achieves the same fu
 .\"
 .It Xo
 .Li spddump
-.Li ;
+.Li \&;
 .Xc
 Dumps all SPD entries.
 .Fl DP

Modified: head/usr.bin/dc/dc.1
==============================================================================
--- head/usr.bin/dc/dc.1	Sun May 13 14:02:40 2012	(r235399)
+++ head/usr.bin/dc/dc.1	Sun May 13 14:16:04 2012	(r235400)
@@ -315,7 +315,7 @@ The length of a number is its number of 
 and decimal point.
 .It Ic z
 The stack level is pushed onto the stack.
-.It Cm [ Ns ... Ns Cm ]
+.It Cm \&[ Ns ... Ns Cm \&]
 Puts the bracketed
 .Tn ASCII
 string onto the top of the stack.
@@ -375,12 +375,12 @@ command.
 .It Ic \&?
 A line of input is taken from the input source (usually the terminal)
 and executed.
-.It Ic : Ns Ar r
+.It Ic \&: Ns Ar r
 Pop two values from the stack.
 The second value on the stack is stored into the array
 .Ar r
 indexed by the top of stack.
-.It Ic ; Ns Ar r
+.It Ic \&; Ns Ar r
 Pop a value from the stack.
 The value is used as an index into register
 .Ar r .

Modified: head/usr.bin/make/make.1
==============================================================================
--- head/usr.bin/make/make.1	Sun May 13 14:02:40 2012	(r235399)
+++ head/usr.bin/make/make.1	Sun May 13 14:16:04 2012	(r235400)
@@ -1661,7 +1661,7 @@ To prevent infinite loops the following 
 .Ic ::
 targets that have no prerequisites
 .It
-.Ic !
+.Ic \&!
 targets
 .It
 targets that have

Modified: head/usr.bin/mklocale/mklocale.1
==============================================================================
--- head/usr.bin/mklocale/mklocale.1	Sun May 13 14:02:40 2012	(r235399)
+++ head/usr.bin/mklocale/mklocale.1	Sun May 13 14:16:04 2012	(r235400)
@@ -123,7 +123,7 @@ All are equivalent.
 .It Dv ">\|\^)\|]"
 Used to end a mapping.
 All are equivalent.
-.It Dv :
+.It Dv ":"
 Used as a delimiter in mappings.
 .El
 .El



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201205131416.q4DEG4Sc086632>