diff options
author | 2015-01-16 15:32:32 +0000 | |
---|---|---|
committer | 2015-01-16 15:32:32 +0000 | |
commit | 03eb5ac1040ecea8c3d624a90992953846fe97d3 (patch) | |
tree | 30d0ac1c00e7a202b29d280127ce93d3033205e6 | |
parent | Properly escape punctuation when given as an argument to a macro; (diff) | |
download | wireguard-openbsd-03eb5ac1040ecea8c3d624a90992953846fe97d3.tar.xz wireguard-openbsd-03eb5ac1040ecea8c3d624a90992953846fe97d3.zip |
remove useless escaping; mandoc warned about some of this
-rw-r--r-- | bin/ksh/ksh.1 | 12 | ||||
-rw-r--r-- | bin/ksh/sh.1 | 12 |
2 files changed, 12 insertions, 12 deletions
diff --git a/bin/ksh/ksh.1 b/bin/ksh/ksh.1 index fb07c222654..7f17594bece 100644 --- a/bin/ksh/ksh.1 +++ b/bin/ksh/ksh.1 @@ -1,8 +1,8 @@ -.\" $OpenBSD: ksh.1,v 1.155 2014/12/09 15:37:13 schwarze Exp $ +.\" $OpenBSD: ksh.1,v 1.156 2015/01/16 15:32:32 schwarze Exp $ .\" .\" Public Domain .\" -.Dd $Mdocdate: December 9 2014 $ +.Dd $Mdocdate: January 16 2015 $ .Dt KSH 1 .Os .Sh NAME @@ -495,9 +495,9 @@ and are reserved words, not meta-characters. .It Xo case Ar word No in .Oo Op \&( -.Ar \ pattern -.Op \*(Ba Ar pattern -.No ... No ) +.Ar pattern +.Op | Ar pattern +.No ... ) .Ar list No ;;\ \& Oc ... esac .Xc The @@ -4165,7 +4165,7 @@ A command that exits with a zero value. .Op Fl R Ns Op Ar n .Op Fl Z Ns Op Ar n .Op Fl i Ns Op Ar n -.No \*(Ba Fl f Op Fl tux +.No \&| Fl f Op Fl tux .Oc .Oo .Ar name diff --git a/bin/ksh/sh.1 b/bin/ksh/sh.1 index 598ce1e0d7d..9341224a7e2 100644 --- a/bin/ksh/sh.1 +++ b/bin/ksh/sh.1 @@ -1,8 +1,8 @@ -.\" $OpenBSD: sh.1,v 1.99 2014/12/09 15:37:13 schwarze Exp $ +.\" $OpenBSD: sh.1,v 1.100 2015/01/16 15:32:32 schwarze Exp $ .\" .\" Public Domain .\" -.Dd $Mdocdate: December 9 2014 $ +.Dd $Mdocdate: January 16 2015 $ .Dt SH 1 .Os .Sh NAME @@ -446,9 +446,9 @@ and are reserved words, not meta-characters. .It Xo case Ar word No in .Oo Op \&( -.Ar \ pattern -.Op \*(Ba Ar pattern -.No ... No ) +.Ar pattern +.Op | Ar pattern +.No ... ) .Ar list No ;;\ \& Oc ... esac .Xc The @@ -3384,7 +3384,7 @@ A command that exits with a zero value. .Op Fl R Ns Op Ar n .Op Fl Z Ns Op Ar n .Op Fl i Ns Op Ar n -.No \*(Ba Fl f Op Fl tux +.No \&| Fl f Op Fl tux .Oc .Oo .Ar name |