aboutsummaryrefslogtreecommitdiff
path: root/qklib/infix.scm
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2024-09-12 00:42:58 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2024-09-12 00:42:58 +0900
commit97342267831a19482cdbaf2b0dcb581301456378 (patch)
treefb37acc4dd9f943b8ec58fcafa8cf9065a65574a /qklib/infix.scm
parentfec4fc36028ae1aa24f3720720820ea7a9283051 (diff)
Update make-default-operator-rule-set
Diffstat (limited to 'qklib/infix.scm')
-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 '/))