* lisp/emacs-lisp/comp.el (comp-run-async-workers): Use `clrhash'.

This commit is contained in:
Andrea Corallo 2020-04-25 15:43:10 +01:00
parent c984a53b4e
commit 9c4c0af89d

View file

@ -2230,7 +2230,7 @@ display a message."
(insert msg "\n")))
;; `comp-deferred-pending-h' should be empty at this stage.
;; Reset it anyway.
(setf comp-deferred-pending-h (make-hash-table :test #'eq))
(clrhash comp-deferred-pending-h)
(message msg))))