aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/sciteco.7.template
diff options
context:
space:
mode:
authorRobin Haberkorn <robin.haberkorn@googlemail.com>2014-11-14 03:21:42 +0100
committerRobin Haberkorn <robin.haberkorn@googlemail.com>2014-11-14 03:21:42 +0100
commit468cb19bce9caf11b027da791b1d6f0aa1b41602 (patch)
treef0d4e68911df3fd412fb2428fcdffed4f7e2dfbd /doc/sciteco.7.template
parent3006be5c5a6655e6f125f33628e6f182bcd61e5e (diff)
downloadsciteco-468cb19bce9caf11b027da791b1d6f0aa1b41602.tar.gz
added ^# (XOR) operator
also changed precedence of + operator (higher than minus). the effects of this should be minimal
Diffstat (limited to 'doc/sciteco.7.template')
-rw-r--r--doc/sciteco.7.template9
1 files changed, 6 insertions, 3 deletions
diff --git a/doc/sciteco.7.template b/doc/sciteco.7.template
index 42d1425..a86606e 100644
--- a/doc/sciteco.7.template
+++ b/doc/sciteco.7.template
@@ -429,15 +429,18 @@ Remainder of \fIa\fP divided by \fIb\fP.
It is actually a modulo operation conforming to the
host C compiler's modulo semantics.
.TP
-.IB a " - " b
-Subtract \fIb\fP from \fIa\fP.
-.TP
.IB a " + " b
Add \fIb\fP to \fIa\fP.
.TP
+.IB a " - " b
+Subtract \fIb\fP from \fIa\fP.
+.TP
.IB a " & " b
Binary AND.
.TP
+.IB a " ^# " b
+Binary exclusive OR (XOR).
+.TP
.IB a " # " b
Binary OR.
.LP