From: Tony Zorman Date: Sun, 15 Oct 2023 14:50:00 +0000 (+0200) Subject: use-package: Update list of valid :vc keywords X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a530b710030c6f69b0252713bf47692de11cc56c;p=emacs.git 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) (cherry picked from commit 426176c75e5337762b185818942c439a93e3d9ef) --- 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)