(functionp): Typo fixed.
authorshuhei-k <shuhei-k>
Sun, 16 May 1999 08:49:27 +0000 (08:49 +0000)
committershuhei-k <shuhei-k>
Sun, 16 May 1999 08:49:27 +0000 (08:49 +0000)
poe.el

diff --git a/poe.el b/poe.el
index eeb41e2..97417b7 100644 (file)
--- a/poe.el
+++ b/poe.el
@@ -427,7 +427,7 @@ See also `with-temp-file' and `with-output-to-string'."
   (cons 'progn body))
 
 ;; imported from emacs-20.3/lisp/subr.el.
-(defun functionp (object)
+(defun-maybe functionp (object)
   "Non-nil if OBJECT is a type of object that can be called as a function."
   (or (subrp object) (byte-code-function-p object)
       (eq (car-safe object) 'lambda)