diff options
author | John Wiegley <johnw@newartisans.com> | 2022-08-07 08:58:12 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-07 08:58:12 -0700 |
commit | 2967849846e7110693f6dfe7d3709e2f3cc127ac (patch) | |
tree | cdd26b2a5f1d58991a6cdb2c3fa3302df8f55bce /lisp | |
parent | 28e7b96fcf092e3541d39a57c99d975f7b02d529 (diff) | |
parent | 4149ec6cfa11cf094f914539ac6915e0d874559f (diff) | |
download | emacs-2967849846e7110693f6dfe7d3709e2f3cc127ac.tar.gz emacs-2967849846e7110693f6dfe7d3709e2f3cc127ac.tar.bz2 emacs-2967849846e7110693f6dfe7d3709e2f3cc127ac.zip |
Merge pull request from waymondo/ensure-system-packages-use-package-as-one
GitHub-reference: https://github.com/jwiegley/use-package/issues/774
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/use-package/use-package-ensure-system-package.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/use-package/use-package-ensure-system-package.el b/lisp/use-package/use-package-ensure-system-package.el index 9899968877b..7c591af7d9b 100644 --- a/lisp/use-package/use-package-ensure-system-package.el +++ b/lisp/use-package/use-package-ensure-system-package.el @@ -55,7 +55,7 @@ ;;;###autoload (defun use-package-normalize/:ensure-system-package (_name-symbol keyword args) "Turn `arg' into a list of cons-es of (`package-name' . `install-command')." - (use-package-only-one (symbol-name keyword) args + (use-package-as-one (symbol-name keyword) args (lambda (_label arg) (cond ((and (listp arg) (listp (cdr arg))) |