]> git.eshelyaron.com Git - emacs.git/commitdiff
(functionp): Use byte-code-function-p, not compiled-function-p.
authorRichard M. Stallman <rms@gnu.org>
Tue, 5 Aug 1997 20:52:56 +0000 (20:52 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 5 Aug 1997 20:52:56 +0000 (20:52 +0000)
lisp/subr.el

index 1e894742cdd376d44d3e81c7751c5aaec38d4f5b..308d400ee88bafc6111b1a18bfbf26399705c1e0 100644 (file)
@@ -1065,7 +1065,7 @@ configuration."
 
 (defun functionp (object)
   "Non-nil if OBJECT is a type of object that can be called as a function."
-  (or (subrp object) (compiled-function-p object)
+  (or (subrp object) (byte-code-function-p object)
       (eq (car-safe object) 'lambda)
       (and (symbolp object) (fboundp object))))