* debug.scm (trace-entry, trace-exit): Removed re-enabling of
authorMikael Djurfeldt <djurfeldt@nada.kth.se>
Fri, 21 Aug 1998 08:08:04 +0000 (08:08 +0000)
committerMikael Djurfeldt <djurfeldt@nada.kth.se>
Fri, 21 Aug 1998 08:08:04 +0000 (08:08 +0000)
trace flag.

ice-9/debug.scm

index e235ab8..9dadcf0 100644 (file)
@@ -88,7 +88,6 @@
        (let indent ((n trace-level))
          (cond ((> n 1) (display "|  " cep) (indent (- n 1)))))
        (display-application frame cep)))
-  (debug-enable 'trace)
   ;; It's not necessary to call the continuation since
   ;; execution will continue if the handler returns
   ;(cont #f)
        (let indent ((n trace-level))
          (cond ((> n 0) (display "|  " cep) (indent (- n 1)))))
        (write retval cep)
-       (newline cep)))
-  (debug-enable 'trace))
+       (newline cep))))
 
 \f
 ;;; A fix to get the error handling working together with the module system.