diff options
author | Tony Zorman <soliditsallgood@mailbox.org> | 2023-10-15 16:50:00 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2024-05-18 13:27:47 +0300 |
commit | 426176c75e5337762b185818942c439a93e3d9ef (patch) | |
tree | d730c608b7a0c5b4d8dd1e095f51e49d7fc1dba3 /lisp/use-package | |
parent | 82a31e27e6ceed17a116286d2f0f9810be2e1772 (diff) | |
download | emacs-426176c75e5337762b185818942c439a93e3d9ef.tar.gz emacs-426176c75e5337762b185818942c439a93e3d9ef.tar.bz2 emacs-426176c75e5337762b185818942c439a93e3d9ef.zip |
use-package: Update list of valid :vc keywords
* lisp/use-package/use-package-core.el: Add ':shell-command'
and ':make' to valid keywords. (Bug#66567)
Diffstat (limited to 'lisp/use-package')
-rw-r--r-- | lisp/use-package/use-package-core.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/use-package/use-package-core.el b/lisp/use-package/use-package-core.el index ba2e93c97e9..65640054c40 100644 --- a/lisp/use-package/use-package-core.el +++ b/lisp/use-package/use-package-core.el @@ -1670,7 +1670,8 @@ indicating the latest commit) revision." (_ (ensure-string v)))) (:vc-backend (ensure-symbol v)) (_ (ensure-string v))))) - (pcase-let ((valid-kws '(:url :branch :lisp-dir :main-file :vc-backend :rev)) + (pcase-let ((valid-kws '( :url :branch :lisp-dir :main-file :vc-backend :rev + :shell-command :make)) (`(,name . ,opts) arg)) (if (stringp opts) ; (NAME . VERSION-STRING) ? (list name opts) |