Skip to content
Snippets Groups Projects
Commit 0680f034 authored by wlott's avatar wlott
Browse files

Changed the #+nil to #+debug in front of some debugging code so that you

can just add :debug to *features* and recompile without changing the source
code.
parent 564b9d3f
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/load.lisp,v 1.42 1992/05/15 17:52:26 wlott Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/load.lisp,v 1.43 1992/07/09 00:05:06 wlott Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -371,7 +371,7 @@ ...@@ -371,7 +371,7 @@
(*current-fop-table-index* 0)) (*current-fop-table-index* 0))
(loop (loop
(let ((byte (read-byte file))) (let ((byte (read-byte file)))
#+nil ;; Uncomment this to get a trace of the fops executed. #+debug ; Add :debug to *features* to get a trace of the fops.
(let ((ptr *fop-stack-pointer*) (let ((ptr *fop-stack-pointer*)
(stack *fop-stack*)) (stack *fop-stack*))
(fresh-line *trace-output*) (fresh-line *trace-output*)
......
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