about summary refs log tree commit diff stats
path: root/shell/infix.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-06-22 23:39:54 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-06-22 23:39:54 -0700
commit76ef912eb25cf6eccac43253ad1184d6fd502426 (patch)
tree435e519b05aa08d34ac74caa73cf12b297699609 /shell/infix.mu
parent2eae06ebda6edfb5d0ea3f8823ccaf60af38694e (diff)
downloadmu-76ef912eb25cf6eccac43253ad1184d6fd502426.tar.gz
all tests passing again; infix seems done
Diffstat (limited to 'shell/infix.mu')
-rw-r--r--shell/infix.mu6
1 files changed, 6 insertions, 0 deletions
diff --git a/shell/infix.mu b/shell/infix.mu
index c9115f39..2239ab77 100644
--- a/shell/infix.mu
+++ b/shell/infix.mu
@@ -169,6 +169,11 @@ fn transform-infix-2 _x-ah: (addr handle cell), trace: (addr trace), at-head-of-
     # scan past first three elements
     var first-ah/ecx: (addr handle cell) <- get x, left
     var rest-ah/esi: (addr handle cell) <- get x, right
+    {
+      var quote-or-unquote?/eax: boolean <- quote-or-unquote? first-ah
+      compare quote-or-unquote?, 0/false
+    }
+    break-if-!=
     var rest/eax: (addr cell) <- lookup *rest-ah
     {
       var continue?/eax: boolean <- not-null-not-nil-pair? rest
@@ -392,6 +397,7 @@ fn test-infix {
   check-infix "~a+b", "(+ (~ a) b)", "F - test-infix/unary-complement"
   check-infix "(n * n-1)", "(* n (- n 1))", "F - test-infix/no-spaces-over-spaces"
   check-infix "`(a + b)", "`(+ a b)", "F - test-infix/backquote"
+  check-infix "`(+ a b)", "`(+ a b)", "F - test-infix/backquote-2"
   check-infix ",@a+b", ",@(+ a b)", "F - test-infix/unquote-splice"
   check-infix ",@(a + b)", ",@(+ a b)", "F - test-infix/unquote-splice-2"
 }