From 36172f4965ff41428866a34456f6fb8c4ea88985 Mon Sep 17 00:00:00 2001 From: Dave Love Date: Thu, 25 May 2000 18:24:44 +0000 Subject: [PATCH] (elp-restore-function): Don't use obsolete byte-code-function-p. --- lisp/emacs-lisp/elp.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/emacs-lisp/elp.el b/lisp/emacs-lisp/elp.el index ea44a65e451..1cb4a3cf575 100644 --- a/lisp/emacs-lisp/elp.el +++ b/lisp/emacs-lisp/elp.el @@ -313,7 +313,7 @@ Argument FUNSYM is the symbol of a defined function." ;; the case that a lisp function can be compiled instrumented? (and info (functionp funsym) - (not (compiled-function-p (symbol-function funsym))) + (not (byte-code-function-p (symbol-function funsym))) (assq 'elp-wrapper (symbol-function funsym)) (fset funsym (aref info 2))))) -- 2.39.5