From 3d5217ab89b949f5b3fa248fe5cd51653cc177b2 Mon Sep 17 00:00:00 2001 From: shuhei-k Date: Sun, 16 May 1999 07:47:21 +0000 Subject: [PATCH] (subr-fboundp): Use `defun' instead of `defsubst'. --- poe.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)))) -- 1.7.10.4