From: shuhei-k Date: Sun, 16 May 1999 07:47:21 +0000 (+0000) Subject: (subr-fboundp): Use `defun' instead of `defsubst'. X-Git-Tag: apel-9_19~34 X-Git-Url: http://git.chise.org/gitweb/?p=elisp%2Fapel.git;a=commitdiff_plain;h=3d5217ab89b949f5b3fa248fe5cd51653cc177b2 (subr-fboundp): Use `defun' instead of `defsubst'. --- diff --git a/poe.el b/poe.el index d2d4910..eeb41e2 100644 --- a/poe.el +++ b/poe.el @@ -143,7 +143,7 @@ See also the function `defconst'." everything-else))) (put (quote (, name)) 'defmacro-maybe t)))))) -(defsubst subr-fboundp (symbol) +(defun subr-fboundp (symbol) "Return t if SYMBOL's function definition is a built-in function." (and (fboundp symbol) (subrp (symbol-function symbol))))