X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fsb-introspect%2Fsb-introspect.lisp;h=5aea963baf6c06c72c5a6aec1a30950e1793df0e;hb=fd79e33e6b6dacdc52cf6668a5bb7adf75aad6c1;hp=d962f6cf7fb68a4b5221240c9d046f9b6e0b2587;hpb=d56803388a0a0a35e1889596f928b367c650c15b;p=sbcl.git diff --git a/contrib/sb-introspect/sb-introspect.lisp b/contrib/sb-introspect/sb-introspect.lisp index d962f6c..5aea963 100644 --- a/contrib/sb-introspect/sb-introspect.lisp +++ b/contrib/sb-introspect/sb-introspect.lisp @@ -25,7 +25,7 @@ (defpackage :sb-introspect (:use "CL") (:export "FUNCTION-ARGLIST" - "FUNCTION-LAMBDA-LIST" + "FUNCTION-LAMBDA-LIST" "DEFTYPE-LAMBDA-LIST" "VALID-FUNCTION-NAME-P" "FIND-DEFINITION-SOURCE" @@ -71,7 +71,7 @@ include the pathname of the file and the position of the definition." (declaim (ftype (function (function) debug-info) function-debug-info)) (defun function-debug-info (function) - (let* ((function-object (sb-kernel::%closure-fun function)) + (let* ((function-object (sb-kernel::%fun-fun function)) (function-header (sb-kernel:fun-code-header function-object))) (sb-kernel:%code-debug-info function-header))) @@ -556,7 +556,7 @@ constant pool." ((or null sb-impl::funcallable-instance) nil) (function - (sb-kernel::%closure-fun functoid)))) + (sb-kernel::%fun-fun functoid)))) (defun collect-xref (kind-index wanted-name) (let ((ret nil))