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

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

[nongnu] elpa/sesman 269bdd26b4 028/100: Fix the autoload cookies


From: ELPA Syncer
Subject: [nongnu] elpa/sesman 269bdd26b4 028/100: Fix the autoload cookies
Date: Tue, 28 Dec 2021 14:06:00 -0500 (EST)

branch: elpa/sesman
commit 269bdd26b4c9bd4b39895d3825d4efa8cb454d79
Author: Bozhidar Batsov <bozhidar@batsov.com>
Commit: Bozhidar Batsov <bozhidar@batsov.com>

    Fix the autoload cookies
---
 sesman.el | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/sesman.el b/sesman.el
index 67ecd6e560..adb4f93831 100644
--- a/sesman.el
+++ b/sesman.el
@@ -257,7 +257,7 @@ Can be either a symbol, or a function returning a symbol.")
 
 ;;; User Interface
 
- ;;;###autoload
+;;;###autoload
 (defun sesman-start ()
   "Start sesman session."
   (interactive)
@@ -265,7 +265,7 @@ Can be either a symbol, or a function returning a symbol.")
     (message "Starting new %s session ..." system)
     (sesman-start-session system)))
 
- ;;;###autoload
+;;;###autoload
 (defun sesman-restart ()
   "Restart sesman session."
   (interactive)
@@ -274,7 +274,7 @@ Can be either a symbol, or a function returning a symbol.")
     (message "Restarting %s '%s' session" system (car old-session))
     (sesman-restart-session system old-session)))
 
- ;;;###autoload
+;;;###autoload
 (defun sesman-quit (which)
   "Terminate sesman session.
 When WHICH is nil, kill only the current session; when a single universal
@@ -294,7 +294,7 @@ t or 'all, kill all sessions."
        (if (= 1 (length sessions)) "session" "sessions")
        (mapcar #'car sessions)))))
 
- ;;;###autoload
+;;;###autoload
 (defun sesman-show-session-info (which)
   "Display session(s) info.
 When WHICH is nil, show info for current session; when a single universal
@@ -314,7 +314,7 @@ argument or 'all, show info for all sessions."
                   "\n"))
       (message "No %s sessions" system))))
 
- ;;;###autoload
+;;;###autoload
 (defun sesman-show-links ()
   "Display links active in the current context."
   (interactive)
@@ -324,25 +324,25 @@ argument or 'all, show info for all sessions."
         (message (mapconcat #'sesman--format-link links "\n"))
       (message "No %s links in the current context" system))))
 
- ;;;###autoload
+;;;###autoload
 (defun sesman-link-with-buffer ()
   "Associate a session with current buffer."
   (interactive)
   (sesman--link-session-interactively buffer))
 
- ;;;###autoload
+;;;###autoload
 (defun sesman-link-with-directory ()
   "Associate a session with current directory."
   (interactive)
   (sesman--link-session-interactively directory))
 
- ;;;###autoload
+;;;###autoload
 (defun sesman-link-with-project ()
   "Associate a session with current project."
   (interactive)
   (sesman--link-session-interactively project))
 
- ;;;###autoload
+;;;###autoload
 (defun sesman-unlink ()
   "Break any of the previously created links."
   (interactive)



reply via email to

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