From 23cb24f2af2d9e77fd0e50d64fd40d2ec321ffec Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Fri, 7 Oct 2005 14:20:12 +0000 Subject: [PATCH] Tracing with :encapsulate nil is rather broken on ppc. So change the default encapsulation from :default to t for ppc, until this is fixed. --- code/ntrace.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/ntrace.lisp b/code/ntrace.lisp index 4ebb069a0..6b2fe383e 100644 --- a/code/ntrace.lisp +++ b/code/ntrace.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/ntrace.lisp,v 1.30 2005/02/25 17:11:52 rtoy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/ntrace.lisp,v 1.31 2005/10/07 14:20:12 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -34,7 +34,7 @@ "If the trace indentation exceeds this value, then indentation restarts at 0.") -(defvar *trace-encapsulate-default* :default +(defvar *trace-encapsulate-default* #-ppc :default #+ppc t "The default value for the :ENCAPSULATE option to trace.") (defvar *trace-encapsulate-package-names* -- GitLab