diff options
| author | Philip Kaludercic | 2022-11-17 17:39:46 +0100 |
|---|---|---|
| committer | Philip Kaludercic | 2022-11-17 17:39:46 +0100 |
| commit | 62cd4f04dc56373fd487bb8fce73251c66f236be (patch) | |
| tree | 5e1bf77942b8c64b347ab8659066d3751e1e02d2 | |
| parent | 05fcad3a20182d32b284c5636babe2ac2941f222 (diff) | |
| download | emacs-scratch/package-vc-fixes.tar.gz emacs-scratch/package-vc-fixes.zip | |
* lisp/emacs-lisp/package-vc.el: Autoload package-vc-update{,-all}scratch/package-vc-fixes
| -rw-r--r-- | lisp/emacs-lisp/package-vc.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/package-vc.el b/lisp/emacs-lisp/package-vc.el index b8a192a2c53..e2845c6ef68 100644 --- a/lisp/emacs-lisp/package-vc.el +++ b/lisp/emacs-lisp/package-vc.el | |||
| @@ -563,6 +563,7 @@ installed package." | |||
| 563 | (if installed package-alist package-archive-contents) | 563 | (if installed package-alist package-archive-contents) |
| 564 | #'string=))) | 564 | #'string=))) |
| 565 | 565 | ||
| 566 | ;;;###autoload | ||
| 566 | (defun package-vc-update-all () | 567 | (defun package-vc-update-all () |
| 567 | "Attempt to update all installed source packages." | 568 | "Attempt to update all installed source packages." |
| 568 | (interactive) | 569 | (interactive) |
| @@ -571,6 +572,7 @@ installed package." | |||
| 571 | (when (package-vc-p pkg-desc) | 572 | (when (package-vc-p pkg-desc) |
| 572 | (package-vc-update pkg-desc))))) | 573 | (package-vc-update pkg-desc))))) |
| 573 | 574 | ||
| 575 | ;;;###autoload | ||
| 574 | (defun package-vc-update (pkg-desc) | 576 | (defun package-vc-update (pkg-desc) |
| 575 | "Attempt to update the package PKG-DESC." | 577 | "Attempt to update the package PKG-DESC." |
| 576 | (interactive (list (package-vc--read-package-desc "Update source package: " t))) | 578 | (interactive (list (package-vc--read-package-desc "Update source package: " t))) |