diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2015-01-16 15:30:11 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2015-01-16 15:30:11 +0000 |
commit | 1a189d75686b875adb0a208a25833cab67fb8c19 (patch) | |
tree | ba1371ae996482b3749acc6d4b2ba8499572b163 /bin | |
parent | 298421efc6e40ac4044967ca112ae93ec1ec9c31 (diff) |
Properly escape punctuation when given as an argument to a macro;
this was the only mandoc warning in src/bin.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/expr/expr.1 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/expr/expr.1 b/bin/expr/expr.1 index a2f552f8eb6..a64165f0d56 100644 --- a/bin/expr/expr.1 +++ b/bin/expr/expr.1 @@ -1,10 +1,10 @@ -.\" $OpenBSD: expr.1,v 1.22 2014/02/23 18:13:27 schwarze Exp $ +.\" $OpenBSD: expr.1,v 1.23 2015/01/16 15:30:10 schwarze Exp $ .\" $NetBSD: expr.1,v 1.9 1995/04/28 23:27:13 jtc Exp $ .\" .\" Written by J.T. Conklin <jtc@netbsd.org>. .\" Public domain. .\" -.Dd $Mdocdate: February 23 2014 $ +.Dd $Mdocdate: January 16 2015 $ .Dt EXPR 1 .Os .Sh NAME @@ -49,7 +49,7 @@ Returns the results of addition or subtraction of integer-valued arguments. .It Ar expr1 Li "{*, /, %}" Ar expr2 Returns the results of multiplication, integer division, or remainder of integer-valued arguments. -.It Ar expr1 Li : Ar expr2 +.It Ar expr1 Li \&: Ar expr2 The .Ql \&: operator matches |