summaryrefslogtreecommitdiff
path: root/lisp/use-package/use-package-ensure-system-package.el
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2022-11-15 09:21:07 -0800
committerJohn Wiegley <johnw@newartisans.com>2022-11-15 09:21:07 -0800
commit49fffe7cf4beb7b35d90758f4e6c24ebfe3615e1 (patch)
tree3b7699e4ffab2312c14f697da11059409ba4b86c /lisp/use-package/use-package-ensure-system-package.el
parentec96b4766418fdfce2d7827fa6ddeb7257ad6cf7 (diff)
parentcf8ab8b52eae65a108d899e896e1171355122bb7 (diff)
downloademacs-49fffe7cf4beb7b35d90758f4e6c24ebfe3615e1.tar.gz
emacs-49fffe7cf4beb7b35d90758f4e6c24ebfe3615e1.tar.bz2
emacs-49fffe7cf4beb7b35d90758f4e6c24ebfe3615e1.zip
Merge remote-tracking branch 'origin/master' into pr-830
Diffstat (limited to 'lisp/use-package/use-package-ensure-system-package.el')
-rw-r--r--lisp/use-package/use-package-ensure-system-package.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/use-package/use-package-ensure-system-package.el b/lisp/use-package/use-package-ensure-system-package.el
index 7c591af7d9b..c42996f9d2a 100644
--- a/lisp/use-package/use-package-ensure-system-package.el
+++ b/lisp/use-package/use-package-ensure-system-package.el
@@ -1,6 +1,6 @@
;;; use-package-ensure-system-package.el --- auto install system packages -*- lexical-binding: t; -*-
-;; Copyright (C) 2017 Justin Talbott
+;; Copyright (C) 2022 Free Software Foundation, Inc.
;; Author: Justin Talbott <justin@waymondo.com>
;; Keywords: convenience, tools, extensions
@@ -29,7 +29,7 @@
"List of custom packages installed.")
(defun use-package-ensure-system-package-consify (arg)
- "Turn `arg' into a cons of (`package-name' . `install-command')."
+ "Turn ARG into a cons of (`package-name' . `install-command')."
(cond
((stringp arg)
(cons arg `(system-packages-install ,arg)))
@@ -54,7 +54,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')."
+ "Turn ARGS into a list of conses of (`package-name' . `install-command')."
(use-package-as-one (symbol-name keyword) args
(lambda (_label arg)
(cond