From: shuhei-k Date: Sun, 16 May 1999 08:49:27 +0000 (+0000) Subject: (functionp): Typo fixed. X-Git-Tag: apel-9_19~30 X-Git-Url: http://git.chise.org/gitweb/?p=elisp%2Fapel.git;a=commitdiff_plain;h=616722fff7e0e81c64ed7dce448d1823f9c1b731 (functionp): Typo fixed. --- diff --git a/poe.el b/poe.el index eeb41e2..97417b7 100644 --- 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)