aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--qklib/infix.scm3
1 files changed, 1 insertions, 2 deletions
diff --git a/qklib/infix.scm b/qklib/infix.scm
index 553fb47..ee58df5 100644
--- a/qklib/infix.scm
+++ b/qklib/infix.scm
@@ -25,8 +25,7 @@
(define (make-default-operator-rule-set)
(rule-set
(list
- (operator '= 0 'both)
- (operator '+ 1 'both (unit 0 #f #t))
+ (operator '+ 1 'both (unit 0))
(operator '- 1 'left (unit 0 #t #t))
(operator '* 2 'both (unit 1))
(operator '/ 2 'left (unit 1 #t) (prefix '/))