cl-pushnew: use 'eq instead of 'eql
This commit is contained in:
parent
9b37f63c84
commit
079be42949
2 changed files with 2 additions and 2 deletions
|
@ -149,7 +149,7 @@ example; the package name can be omitted)."
|
|||
(recipe (plist-get plist :recipe)))
|
||||
(cond (recipe (quelpa recipe))
|
||||
(t (package-install name))))
|
||||
(cl-pushnew (cons name plist) doom-packages :key 'car)
|
||||
(cl-pushnew (cons name plist) doom-packages :test 'eq :key 'car)
|
||||
(package-installed-p name))
|
||||
|
||||
(defun doom-update-package (name)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue