summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Campbell <aaron@cvs.openbsd.org>2004-05-07 15:35:20 +0000
committerAaron Campbell <aaron@cvs.openbsd.org>2004-05-07 15:35:20 +0000
commit8fe069866ca23e3b9d9f6a304e2eee1040aeff8f (patch)
tree085a2263ded50637522c1cc08c6ebcae409344e1
parentf288dc768763b71e1fab221d4b68f87e15422e8d (diff)
List all operators (= += -= *= /= %= <<= >>= &= ^= |=) instead of printing the
first few followed by "etc". From FreeBSD. millert@ ok
-rw-r--r--share/man/man7/operator.76
1 files changed, 3 insertions, 3 deletions
diff --git a/share/man/man7/operator.7 b/share/man/man7/operator.7
index b092eef19c3..7389604890e 100644
--- a/share/man/man7/operator.7
+++ b/share/man/man7/operator.7
@@ -1,4 +1,4 @@
-.\" $OpenBSD: operator.7,v 1.4 2003/06/02 23:30:15 millert Exp $
+.\" $OpenBSD: operator.7,v 1.5 2004/05/07 15:35:19 aaron Exp $
.\" $NetBSD: operator.7,v 1.3 1994/11/30 19:07:26 jtc Exp $
.\"
.\" Copyright (c) 1989, 1990, 1993
@@ -38,7 +38,7 @@
.Nd C operator precedence and associativity
.Sh DESCRIPTION
.Bd -ragged -offset indent -compact
-.Bl -column "Operator Associativity "
+.Bl -column "= += -= *= /= %= <<= >>= &= ^= |="
.It Operator Associativity
.It -------- -------------
.It \&() [] -> . left to right
@@ -54,7 +54,7 @@
.It \&&& left to right
.It \&|| left to right
.It \&?: right to left
-.It \&= += -= etc. right to left
+.It "= += -= *= /= %= <<= >>= &= ^= |= right to left"
.It \&, left to right
.El
.Ed