diff options
author | Stefan Kangas <stefan@marxist.se> | 2022-05-15 16:59:42 +0200 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2022-05-15 21:38:48 +0200 |
commit | cd5fcf10c6d4bbe4b72acfbc8b908b37513acac1 (patch) | |
tree | 1fbe46fe6b45101fca37e57fa7873f614cf5eee1 /lisp/emacs-lisp/package.el | |
parent | 2b3f3d421aac829f8cdefed1d2fc3f6116066a0d (diff) | |
download | emacs-cd5fcf10c6d4bbe4b72acfbc8b908b37513acac1.tar.gz emacs-cd5fcf10c6d4bbe4b72acfbc8b908b37513acac1.tar.bz2 emacs-cd5fcf10c6d4bbe4b72acfbc8b908b37513acac1.zip |
Minor clarification of package-update-all docstring
* lisp/emacs-lisp/package.el (package-update-all): Clarify
docstring slightly. (Bug#55408)
Diffstat (limited to 'lisp/emacs-lisp/package.el')
-rw-r--r-- | lisp/emacs-lisp/package.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/package.el b/lisp/emacs-lisp/package.el index b2a01248e80..f356a2bf603 100644 --- a/lisp/emacs-lisp/package.el +++ b/lisp/emacs-lisp/package.el @@ -2166,8 +2166,8 @@ to install it but still mark it as selected." (defun package-update-all (&optional query) "Upgrade all packages. -If QUERY, ask the user before updating packages. Interactively, -QUERY is always true." +If QUERY, ask the user before updating packages. When called +interactively, QUERY is always true." (interactive (list t)) (let ((updateable (package--updateable-packages))) (if (not updateable) |