From 058c50ae5c05921b1219e12268ea7ccdcb8842ef Mon Sep 17 00:00:00 2001 From: dtc <dtc> Date: Sun, 7 Dec 1997 18:22:25 +0000 Subject: [PATCH] Output a fresh-line at the end of a backtrace, ensuring that the last frame is flushed which was not always the case. --- code/debug.lisp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/code/debug.lisp b/code/debug.lisp index e234cd546..205fd57ec 100644 --- a/code/debug.lisp +++ b/code/debug.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug.lisp,v 1.45 1997/02/12 20:09:54 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/debug.lisp,v 1.46 1997/12/07 18:22:25 dtc Exp $") ;;; ;;; ********************************************************************** ;;; @@ -485,9 +485,10 @@ See the CMU Common Lisp User's Manual for more information. (do ((frame (if *in-the-debugger* *current-frame* (di:top-frame)) (di:frame-down frame)) (count count (1- count))) - ((or (null frame) (zerop count)) - (values)) - (print-frame-call frame :number t)))) + ((or (null frame) (zerop count))) + (print-frame-call frame :number t)) + (fresh-line *standard-output*) + (values))) ;;;; Frame printing: -- GitLab