mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Fix wrong-number-of-args error when installing packages
The fourth argument of map-put is an Emacs 26+ only feature.
This commit is contained in:
@ -280,7 +280,7 @@ example; the package name can be omitted)."
|
||||
(let ((pkg-build-dir (expand-file-name (symbol-name name) quelpa-build-dir)))
|
||||
(when (file-directory-p pkg-build-dir)
|
||||
(delete-directory pkg-build-dir t)))
|
||||
(map-put doom-packages name plist #'eq)
|
||||
(map-put doom-packages name plist)
|
||||
name)))
|
||||
|
||||
(defun doom-update-package (name &optional force-p)
|
||||
|
Reference in New Issue
Block a user