Skip to content
Snippets Groups Projects
Commit 4c87bd6a authored by rtoy's avatar rtoy
Browse files

Make the test for flet/labels functions more explicit. We were

catching setf functions previously.
parent 0e098884
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.47 2011/02/01 15:35:00 rtoy Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/ntrace.lisp,v 1.48 2011/02/22 22:56:15 rtoy Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -515,7 +515,8 @@ ...@@ -515,7 +515,8 @@
(unless named (unless named
(error (intl:gettext "Can't use encapsulation to trace anonymous function ~S.") (error (intl:gettext "Can't use encapsulation to trace anonymous function ~S.")
fun)) fun))
(when (listp function-or-name) (when (and (listp function-or-name)
(member function-or-name '(flet labels)))
(error (intl:gettext "Can't use encapsulation to trace local flet/labels function ~S.") (error (intl:gettext "Can't use encapsulation to trace local flet/labels function ~S.")
function-or-name)) function-or-name))
(fwrap function-or-name #'trace-fwrapper :type 'trace (fwrap function-or-name #'trace-fwrapper :type 'trace
......
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