]> git.eshelyaron.com Git - emacs.git/commitdiff
(elp-restore-function): Don't use obsolete byte-code-function-p.
authorDave Love <fx@gnu.org>
Thu, 25 May 2000 18:24:44 +0000 (18:24 +0000)
committerDave Love <fx@gnu.org>
Thu, 25 May 2000 18:24:44 +0000 (18:24 +0000)
lisp/emacs-lisp/elp.el

index ea44a65e4512eeccba4d3d5f00927f85d9be5a65..1cb4a3cf57521bdf07c07623f1553d7ca2715bbc 100644 (file)
@@ -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)))))