emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/system-packages 19ab3e9 030/117: Adds autoload magic co


From: Stefan Monnier
Subject: [elpa] externals/system-packages 19ab3e9 030/117: Adds autoload magic comments
Date: Fri, 14 Dec 2018 17:02:02 -0500 (EST)

branch: externals/system-packages
commit 19ab3e959c04dc084f0c679228ab675e5a559c30
Author: Alex Branham <address@hidden>
Commit: Alex Branham <address@hidden>

    Adds autoload magic comments
    
    Closes #11
---
 system-packages.el | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/system-packages.el b/system-packages.el
index 328229a..e06edc1 100644
--- a/system-packages.el
+++ b/system-packages.el
@@ -153,18 +153,21 @@
 ;; functions on named packages
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
+;;;###autoload
 (defun system-packages-install (pack)
   "Installs system packages using the package manager named in
 system-packages-packagemanager."
   (interactive "sWhat package to install: ")
   (system-packages--run-command 'install pack))
 
+;;;###autoload
 (defun system-packages-search (pack)
   "Search for system packages using the package manager named in
 system-packages-packagemanager."
   (interactive "sSearch string: ")
   (system-packages--run-command 'search pack))
 
+;;;###autoload
 (defun system-packages-uninstall (pack)
   "Uninstalls installed system packages using the package manager named in
 system-packages-packagemanager."
@@ -175,18 +178,21 @@ system-packages-packagemanager."
 ;; functions that don't take a named package
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
+;;;###autoload
 (defun system-packages-update ()
   "Updates installed system packages using the package manager named in
 system-packages-packagemanager."
   (interactive)
   (system-packages--run-command 'update))
 
+;;;###autoload
 (defun system-packages-remove-orphaned ()
   "This function removes orphaned packages (i.e. unused packages). using the 
package manager named in
 system-packages-packagemanager."
   (interactive)
   (system-packages--run-command 'remove-orphaned))
 
+;;;###autoload
 (defun system-packages-list-installed-packages (arg)
   "List explicitly installed packages using the package manager
 named in system-packages-packagemanager. With



reply via email to

[Prev in Thread] Current Thread [Next in Thread]