From d8d306e13c053c139bb998f97a53c723ff051bd5 Mon Sep 17 00:00:00 2001 From: toy <toy> Date: Tue, 7 Jan 2003 17:19:10 +0000 Subject: [PATCH] Don't try to profile special-operators because we can't encapsulate them. Problem and solution by Eric Marsden. --- code/profile.lisp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/code/profile.lisp b/code/profile.lisp index a61e5988c..0131d5062 100644 --- a/code/profile.lisp +++ b/code/profile.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/profile.lisp,v 1.25 2003/01/07 15:31:29 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/profile.lisp,v 1.26 2003/01/07 17:19:10 toy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -498,7 +498,8 @@ this, the functions are listed. If NIL, then always list the functions.") (find-package package)))) (do-symbols (symbol package (values)) (when (and (eq (symbol-package symbol) package) - (fboundp symbol)) + (fboundp symbol) + (not (special-operator-p symbol))) (profile-1-function symbol callers-p))))) ;;; UNPROFILE -- Public -- GitLab