Mercurial > emacs
changeset 29211:88e33ac31c14
(elp-restore-function): Don't use obsolete byte-code-function-p.
author | Dave Love <fx@gnu.org> |
---|---|
date | Thu, 25 May 2000 18:24:44 +0000 |
parents | 6fa5b7f5de9c |
children | f35b1d67aa8f |
files | lisp/emacs-lisp/elp.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/emacs-lisp/elp.el Thu May 25 18:20:20 2000 +0000 +++ b/lisp/emacs-lisp/elp.el Thu May 25 18:24:44 2000 +0000 @@ -313,7 +313,7 @@ ;; 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)))))