diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-03-23 22:27:17 +0000 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-03-23 22:27:17 +0000 |
commit | 73ced8c23ec3d5cdfa6d926af649235104707d85 (patch) | |
tree | 8e8b559a979df09f874ceb7c6e4622a43e9d5d49 /lisp/emacs-lisp/comp.el | |
parent | 8cc8adb04d2861fb1b1bbb38e53feccf3a2fc1c5 (diff) | |
download | emacs-73ced8c23ec3d5cdfa6d926af649235104707d85.tar.gz emacs-73ced8c23ec3d5cdfa6d926af649235104707d85.tar.bz2 emacs-73ced8c23ec3d5cdfa6d926af649235104707d85.zip |
* comp.el : Fix typo introduced by f8b07ff4f3
Diffstat (limited to 'lisp/emacs-lisp/comp.el')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index c6f2ca13aab..dfa9658a36c 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -2191,7 +2191,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 :equal #'eq)) + (setf comp-deferred-pending-h (make-hash-table :test #'eq)) (message msg)))) |