mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-24 21:41:48 -08:00
* Fix missing `comp-files-queue' update (bug#63415).
* lisp/emacs-lisp/comp.el (native--compile-async): Update `comp-files-queue' for real.
This commit is contained in:
parent
689f04a2dd
commit
51848e4731
1 changed files with 3 additions and 2 deletions
|
|
@ -4229,8 +4229,9 @@ bytecode definition was not changed in the meantime)."
|
|||
;; compilation, so update `comp-files-queue' to reflect that.
|
||||
(unless (or (null load)
|
||||
(eq load (cdr entry)))
|
||||
(cl-substitute (cons file load) (car entry) comp-files-queue
|
||||
:key #'car :test #'string=))
|
||||
(setf comp-files-queue
|
||||
(cl-substitute (cons file load) (car entry) comp-files-queue
|
||||
:key #'car :test #'string=)))
|
||||
|
||||
(unless (native-compile-async-skip-p file load selector)
|
||||
(let* ((out-filename (comp-el-to-eln-filename file))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue