[movitz-cvs] CVS update: movitz/losp/x86-pc/debugger.lisp
Frode Vatvedt Fjeld
ffjeld at common-lisp.net
Thu Apr 15 13:17:51 UTC 2004
Update of /project/movitz/cvsroot/movitz/losp/x86-pc
In directory common-lisp.net:/tmp/cvs-serv9158
Modified Files:
debugger.lisp
Log Message:
Don't conflate interrupt frames by default.
Date: Thu Apr 15 09:17:50 2004
Author: ffjeld
Index: movitz/losp/x86-pc/debugger.lisp
diff -u movitz/losp/x86-pc/debugger.lisp:1.7 movitz/losp/x86-pc/debugger.lisp:1.8
--- movitz/losp/x86-pc/debugger.lisp:1.7 Sun Apr 11 14:56:31 2004
+++ movitz/losp/x86-pc/debugger.lisp Thu Apr 15 09:17:50 2004
@@ -10,7 +10,7 @@
;;;; Author: Frode Vatvedt Fjeld <frodef at acm.org>
;;;; Created at: Fri Nov 22 10:09:18 2002
;;;;
-;;;; $Id: debugger.lisp,v 1.7 2004/04/11 18:56:31 ffjeld Exp $
+;;;; $Id: debugger.lisp,v 1.8 2004/04/15 13:17:50 ffjeld Exp $
;;;;
;;;;------------------------------------------------------------------
@@ -455,7 +455,7 @@
((:fresh-lines *backtrace-do-fresh-lines*) *backtrace-do-fresh-lines*)
(conflate *backtrace-do-conflate*)
(length *backtrace-length*)
- print-returns
+ print-returns conflate-interrupts
((:print-frames *backtrace-print-frames*) *backtrace-print-frames*))
(let ((*print-safely* t)
(*standard-output* *debug-io*)
@@ -483,7 +483,7 @@
(integer
(let* ((interrupt-frame stack-frame)
(funobj (interrupt-frame-ref interrupt-frame :esi :lisp)))
- (if (and conflate
+ (if (and conflate-interrupts conflate
;; When the interrupted function has a stack-frame, conflate it.
(typep funobj 'function)
(= 1 (ldb (byte 1 5) (funobj-debug-info funobj))))
More information about the Movitz-cvs
mailing list