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

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

[nongnu] elpa/sesman 0e38d4e427 057/100: Remove unnecessary autoloads


From: ELPA Syncer
Subject: [nongnu] elpa/sesman 0e38d4e427 057/100: Remove unnecessary autoloads
Date: Tue, 28 Dec 2021 14:06:02 -0500 (EST)

branch: elpa/sesman
commit 0e38d4e427c63c999d3bd98c71638121da417ac8
Author: Vitalie Spinu <spinuvit@gmail.com>
Commit: Vitalie Spinu <spinuvit@gmail.com>

    Remove unnecessary autoloads
---
 sesman-browser.el | 14 --------------
 1 file changed, 14 deletions(-)

diff --git a/sesman-browser.el b/sesman-browser.el
index 64c7bfc233..91ebacae18 100644
--- a/sesman-browser.el
+++ b/sesman-browser.el
@@ -163,37 +163,31 @@ return nil. If LAX is non-nil, search nearby and return 
the closest value."
     (when (eobp)
       (goto-char pos))))
 
-;;;###autoload
 (defun sesman-browser-forward ()
   "Go to next button."
   (interactive)
   (sesman-browser--prev :sesman-stop))
 
-;;;###autoload
 (defun sesman-browser-backward ()
   "Go to previous button."
   (interactive)
   (sesman-browser--next :sesman-stop))
 
-;;;###autoload
 (defun sesman-browser-vertical-next ()
   "Go to next button section or row."
   (interactive)
   (sesman-browser--prev :sesman-vertical-stop))
 
-;;;###autoload
 (defun sesman-browser-vertical-prev ()
   "Go to previous button section or row."
   (interactive)
   (sesman-browser--next :sesman-vertical-stop))
 
-;;;###autoload
 (defun sesman-browser-session-next ()
   "Go to next session."
   (interactive)
   (sesman-browser--prev :sesman-session-stop))
 
-;;;###autoload
 (defun sesman-browser-session-prev ()
   "Go to previous session."
   (interactive)
@@ -202,7 +196,6 @@ return nil. If LAX is non-nil, search nearby and return the 
closest value."
 
 ;;; Display
 
-;;;###autoload
 (defun sesman-goto (&optional no-switch)
   "Go to most relevant buffer for session at point.
 If NO-SWITCH is non-nil, only display the buffer."
@@ -226,7 +219,6 @@ If NO-SWITCH is non-nil, only display the buffer."
                 (pop-to-buffer most-recent-buf)))
           (user-error "Cannot jump to session %s; it doesn't contain any 
buffers" (car session)))))))
 
-;;;###autoload
 (defun sesman-show ()
   "Show the most relevant buffer for the session at point."
   (interactive)
@@ -248,40 +240,34 @@ If NO-SWITCH is non-nil, only display the buffer."
 
 ;;; Sesman UI
 
-;;;###autoload
 (defun sesman-browser-quit-session ()
   "Quite session at point."
   (interactive)
   (sesman-quit (sesman-browser-get 'session)))
 
-;;;###autoload
 (defun sesman-browser-restart-session ()
   "Restart session at point."
   (interactive)
   (sesman-restart (sesman-browser-get 'session)))
 
-;;;###autoload
 (defun sesman-browser-link-with-buffer ()
   "Ask for buffer to link session at point to."
   (interactive)
   (let ((session (sesman-browser-get 'session)))
     (sesman-link-with-buffer 'ask session)))
 
-;;;###autoload
 (defun sesman-browser-link-with-directory ()
   "Ask for directory to link session at point to."
   (interactive)
   (let ((session (sesman-browser-get 'session)))
     (sesman-link-with-directory 'ask session)))
 
-;;;###autoload
 (defun sesman-browser-link-with-project ()
   "Ask for project to link session at point to."
   (interactive)
   (let ((session (sesman-browser-get 'session)))
     (sesman-link-with-project 'ask session)))
 
-;;;###autoload
 (defun sesman-browser-unlink ()
   "Unlink the link at point or ask for link to unlink."
   (interactive)



reply via email to

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