summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2020-04-25 15:43:10 +0100
committerAndrea Corallo <akrl@sdf.org>2020-04-25 19:55:40 +0100
commit9c4c0af89d88f5b4a9124741f64915c5378f1283 (patch)
tree3ede3f0ab221d1799e4ce8ddc9e6e0408c0c541e /lisp/emacs-lisp
parentc984a53b4e198e31d11d7bc493dc9a686c77edae (diff)
downloademacs-9c4c0af89d88f5b4a9124741f64915c5378f1283.tar.gz
emacs-9c4c0af89d88f5b4a9124741f64915c5378f1283.tar.bz2
emacs-9c4c0af89d88f5b4a9124741f64915c5378f1283.zip
* lisp/emacs-lisp/comp.el (comp-run-async-workers): Use `clrhash'.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/comp.el2
1 files changed, 1 insertions, 1 deletions
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))))