[movitz-cvs] CVS update: movitz/losp/muerte/environment.lisp
Frode Vatvedt Fjeld
ffjeld at common-lisp.net
Fri Mar 26 01:35:29 UTC 2004
Update of /project/movitz/cvsroot/movitz/losp/muerte
In directory common-lisp.net:/tmp/cvs-serv27600
Modified Files:
environment.lisp
Log Message:
Put a maximum on the tracing indenting.
Date: Thu Mar 25 20:35:29 2004
Author: ffjeld
Index: movitz/losp/muerte/environment.lisp
diff -u movitz/losp/muerte/environment.lisp:1.4 movitz/losp/muerte/environment.lisp:1.5
--- movitz/losp/muerte/environment.lisp:1.4 Wed Mar 24 19:52:54 2004
+++ movitz/losp/muerte/environment.lisp Thu Mar 25 20:35:29 2004
@@ -10,7 +10,7 @@
;;;; Author: Frode Vatvedt Fjeld <frodef at acm.org>
;;;; Created at: Sat Oct 20 00:41:57 2001
;;;;
-;;;; $Id: environment.lisp,v 1.4 2004/03/25 00:52:54 ffjeld Exp $
+;;;; $Id: environment.lisp,v 1.5 2004/03/26 01:35:29 ffjeld Exp $
;;;;
;;;;------------------------------------------------------------------
@@ -94,9 +94,10 @@
(declare (dynamic-extent results))
(let ((*trace-escape* t))
(fresh-line *trace-output*)
- (dotimes (i *trace-level*)
+ (dotimes (i (min *trace-level* 10))
(write-string " " *trace-output*))
- (format *trace-output* "~&~D: =>~{ ~W~^,~}.~%" *trace-level* results)
+ (format *trace-output* "~D: =>~{ ~W~^,~}.~%"
+ *trace-level* results)
(values-list results)))
(let ((*trace-level* (1+ *trace-level*))
(*trace-escape* nil))
More information about the Movitz-cvs
mailing list