From: Christophe Rhodes Date: Fri, 5 Aug 2005 21:14:32 +0000 (+0000) Subject: 0.9.3.31: X-Git-Url: http://repo.macrolet.net/gitweb/?a=commitdiff_plain;h=dc3c6bfad38cbd96013cf76ce93a9273f01c46d2;p=sbcl.git 0.9.3.31: finish output from trace at every applicable point; don't rely on the output stream being line buffered... ... should make tracing in slime a bit more pleasant. --- diff --git a/src/code/ntrace.lisp b/src/code/ntrace.lisp index ded1ab7..f4bbf63 100644 --- a/src/code/ntrace.lisp +++ b/src/code/ntrace.lisp @@ -270,7 +270,8 @@ (terpri) (trace-print frame (trace-info-print info)) (write-sequence (get-output-stream-string *standard-output*) - *trace-output*)) + *trace-output*) + (finish-output *trace-output*)) (trace-maybe-break info (trace-info-break info) "before" frame))) (lambda (frame cookie) @@ -311,7 +312,8 @@ (terpri) (trace-print frame (trace-info-print-after info)) (write-sequence (get-output-stream-string *standard-output*) - *trace-output*)) + *trace-output*) + (finish-output *trace-output*)) (trace-maybe-break info (trace-info-break-after info) "after" diff --git a/version.lisp-expr b/version.lisp-expr index 430b781..ffe235b 100644 --- a/version.lisp-expr +++ b/version.lisp-expr @@ -17,4 +17,4 @@ ;;; checkins which aren't released. (And occasionally for internal ;;; versions, especially for internal versions off the main CVS ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".) -"0.9.3.30" +"0.9.3.31"