Skip to content
Snippets Groups Projects
Commit 7451e31d authored by rtoy's avatar rtoy
Browse files

On x86/darwin, tracing only works with encapsulation, so make the

default be encapsulation.
parent e2577d86
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/ntrace.lisp,v 1.40 2007/10/18 22:26:08 rtoy Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/ntrace.lisp,v 1.41 2007/12/13 12:59:58 rtoy Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -34,7 +34,10 @@ ...@@ -34,7 +34,10 @@
"If the trace indentation exceeds this value, then indentation restarts at "If the trace indentation exceeds this value, then indentation restarts at
0.") 0.")
(defvar *trace-encapsulate-default* :default ;; Currently, only encapsulation works on x86/darwin,
(defvar *trace-encapsulate-default*
#-(and x86 darwin) :default
#+(and x86 darwin) t
"The default value for the :ENCAPSULATE option to trace.") "The default value for the :ENCAPSULATE option to trace.")
(defvar *trace-encapsulate-package-names* (defvar *trace-encapsulate-package-names*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment