* lisp/emacs-lisp/bytecomp.el (byte-compile-eval): Fix bug#64232
This commit is contained in:
parent
51807e12da
commit
3710178024
1 changed files with 2 additions and 1 deletions
|
@ -1128,7 +1128,8 @@ Each function's symbol gets added to `byte-compile-noruntime-functions'."
|
|||
;; we arguably should add it to b-c-noruntime-functions,
|
||||
;; but it's not clear it's worth the trouble
|
||||
;; trying to recognize that case.
|
||||
(unless (get f 'function-history)
|
||||
(unless (or (get f 'function-history)
|
||||
(assq f byte-compile-function-environment))
|
||||
(push f byte-compile-noruntime-functions)))))))))))))
|
||||
|
||||
(defun byte-compile-eval-before-compile (form)
|
||||
|
|
Loading…
Add table
Reference in a new issue