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)
This commit is contained in:
parent
82a31e27e6
commit
426176c75e
1 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue