mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
(elp-restore-function): Don't use obsolete byte-code-function-p.
This commit is contained in:
parent
020c9ca57d
commit
36172f4965
1 changed files with 1 additions and 1 deletions
|
|
@ -313,7 +313,7 @@ Argument FUNSYM is the symbol of a defined function."
|
||||||
;; the case that a lisp function can be compiled instrumented?
|
;; the case that a lisp function can be compiled instrumented?
|
||||||
(and info
|
(and info
|
||||||
(functionp funsym)
|
(functionp funsym)
|
||||||
(not (compiled-function-p (symbol-function funsym)))
|
(not (byte-code-function-p (symbol-function funsym)))
|
||||||
(assq 'elp-wrapper (symbol-function funsym))
|
(assq 'elp-wrapper (symbol-function funsym))
|
||||||
(fset funsym (aref info 2)))))
|
(fset funsym (aref info 2)))))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue