From fa3f23105ddcf07c5900de47f19af43d1db1b597 Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Mon, 20 Feb 2017 00:05:27 -0800 Subject: Import Upstream version 2c3 --- trace.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'trace.scm') diff --git a/trace.scm b/trace.scm index 2ffeaed..3476548 100644 --- a/trace.scm +++ b/trace.scm @@ -40,9 +40,9 @@ (else (do ((i debug:indent (+ -1 i))) ((zero? i)) (display #\ )) (apply qpn CALL name args) - (set! debug:indent (modulo (+ 1 debug:indent) 8)) + (set! debug:indent (modulo (+ 1 debug:indent) 16)) (let ((ans (apply function args))) - (set! debug:indent (modulo (+ -1 debug:indent) 8)) + (set! debug:indent (modulo (+ -1 debug:indent) 16)) (do ((i debug:indent (+ -1 i))) ((zero? i)) (display #\ )) (qpn RETN name ans) ans)))))))) @@ -96,7 +96,8 @@ (defmacro trace xs (if (null? xs) - `(begin ,@(map (lambda (x) `(set! ,x (trace:tracef ,x ',x))) + `(begin (set! debug:indent 0) + ,@(map (lambda (x) `(set! ,x (trace:tracef ,x ',x))) (map car *traced-procedures*)) (map car *traced-procedures*)) `(begin ,@(map (lambda (x) `(set! ,x (trace:tracef ,x ',x))) xs)))) -- cgit v1.2.3