summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp/elp.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-04-12 19:15:11 +0000
committerRichard M. Stallman <rms@gnu.org>1997-04-12 19:15:11 +0000
commitb5ca6f92e7535a1432e93d07c621e47990cb9eea (patch)
treec45d84000ebf91fe6810286ca6abec48425942b7 /lisp/emacs-lisp/elp.el
parent9b267ebada375513f5c87319ac70f718b13203d7 (diff)
downloademacs-b5ca6f92e7535a1432e93d07c621e47990cb9eea.tar.gz
(elp-functionp): Definitions deleted; use functionp.
Diffstat (limited to 'lisp/emacs-lisp/elp.el')
-rw-r--r--lisp/emacs-lisp/elp.el18
1 files changed, 1 insertions, 17 deletions
diff --git a/lisp/emacs-lisp/elp.el b/lisp/emacs-lisp/elp.el
index 52084311124..d6bac0697a6 100644
--- a/lisp/emacs-lisp/elp.el
+++ b/lisp/emacs-lisp/elp.el
@@ -206,22 +206,6 @@ This variable is set by the master function.")
(defvar elp-master nil
"Master function symbol.")
-
-;; Emacs/XEmacs compatibility.
-(if (fboundp 'functionp)
- (defalias 'elp-functionp 'functionp)
- ;; Lift XEmacs 19.13's functionp from subr.el
- (defun elp-functionp (obj)
- "Returns t if OBJ is a function, nil otherwise."
- (cond
- ((symbolp obj) (fboundp obj))
- ((subrp obj))
- ((compiled-function-p obj))
- ((consp obj)
- (if (eq (car obj) 'lambda) (listp (car (cdr obj)))))
- (t nil))))
-
-
;;;###autoload
(defun elp-instrument-function (funsym)
"Instrument FUNSYM for profiling.
@@ -321,7 +305,7 @@ Argument FUNSYM is the symbol of a defined function."
;; we don't want to destroy the new definition. can it ever be
;; the case that a lisp function can be compiled instrumented?
(and info
- (elp-functionp funsym)
+ (functionp funsym)
(not (compiled-function-p (symbol-function funsym)))
(assq 'elp-wrapper (symbol-function funsym))
(fset funsym (aref info 2)))))