diff options
author | Philip Kaludercic <philipk@posteo.net> | 2022-11-17 17:39:46 +0100 |
---|---|---|
committer | Philip Kaludercic <philipk@posteo.net> | 2022-11-17 20:55:04 +0100 |
commit | 17889dd828dabc8d4a015c3df889799818178afb (patch) | |
tree | cfebdeb3fe0b3a10ef4d3fd167f761096e7bdfbb /lisp/emacs-lisp/package-vc.el | |
parent | fb6d62f881d4df4c9f0bedff7054d13be9587853 (diff) | |
download | emacs-17889dd828dabc8d4a015c3df889799818178afb.tar.gz emacs-17889dd828dabc8d4a015c3df889799818178afb.tar.bz2 emacs-17889dd828dabc8d4a015c3df889799818178afb.zip |
* lisp/emacs-lisp/package-vc.el: Autoload package-vc-update{,-all}
Diffstat (limited to 'lisp/emacs-lisp/package-vc.el')
-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 b3638cda283..9e2bd106cb3 100644 --- a/lisp/emacs-lisp/package-vc.el +++ b/lisp/emacs-lisp/package-vc.el @@ -562,6 +562,7 @@ installed package." (if installed package-alist package-archive-contents) #'string=))) +;;;###autoload (defun package-vc-update-all () "Attempt to update all installed VC packages." (interactive) @@ -571,6 +572,7 @@ installed package." (package-vc-update pkg-desc)))) (message "Done updating packages.")) +;;;###autoload (defun package-vc-update (pkg-desc) "Attempt to update the package PKG-DESC." (interactive (list (package-vc--read-package-desc "Update source package: " t))) |