about summary refs log tree commit diff stats
path: root/mu.arc
diff options
context:
space:
mode:
Diffstat (limited to 'mu.arc')
-rw-r--r--mu.arc4
1 files changed, 2 insertions, 2 deletions
diff --git a/mu.arc b/mu.arc
index d7ca1afe..55593947 100644
--- a/mu.arc
+++ b/mu.arc
@@ -464,14 +464,14 @@
                       (continue))
                 jump-if
                   (let flag (m arg.0)
-                    (trace "jump" "checking that " flag " is t")
+                    (trace "jump" "checking " flag)
                     (when (is t flag)
                       (= pc.routine* (+ 1 pc.routine* (v arg.1)))
                       (trace "jump" "jumping to " pc.routine*)
                       (continue)))
                 jump-unless  ; convenient helper
                   (let flag (m arg.0)
-                    (trace "jump" "checking " flag)
+                    (trace "jump" "checking ~" flag)
                     (when (no flag)
                       (= pc.routine* (+ 1 pc.routine* (v arg.1)))
                       (trace "jump" "jumping to " pc.routine*)