From: Andrea Corallo Date: Sat, 25 Apr 2020 14:43:10 +0000 (+0100) Subject: * lisp/emacs-lisp/comp.el (comp-run-async-workers): Use `clrhash'. X-Git-Tag: emacs-28.0.90~2727^2~685 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9c4c0af89d88f5b4a9124741f64915c5378f1283;p=emacs.git * lisp/emacs-lisp/comp.el (comp-run-async-workers): Use `clrhash'. --- diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 42c40aaa43a..e96de273359 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -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))))