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

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

[nongnu] elpa/annotate dedbd9e5d5 064/372: removes unnecessary autoloads


From: ELPA Syncer
Subject: [nongnu] elpa/annotate dedbd9e5d5 064/372: removes unnecessary autoloads
Date: Fri, 4 Feb 2022 16:58:19 -0500 (EST)

branch: elpa/annotate
commit dedbd9e5d5286f1ca8ad73e489d408a20f06156c
Author: Bastian Bechtold <bastibe@users.noreply.github.com>
Commit: GitHub <noreply@github.com>

    removes unnecessary autoloads
---
 annotate.el | 15 ---------------
 1 file changed, 15 deletions(-)

diff --git a/annotate.el b/annotate.el
index ab4f5be234..c5d0314855 100644
--- a/annotate.el
+++ b/annotate.el
@@ -68,43 +68,36 @@
 (define-key annotate-mode-map (kbd "C-c ]") 'annotate-next-annotation)
 (define-key annotate-mode-map (kbd "C-c [") 'annotate-previous-annotation)
 
-;;;###autoload
 (defcustom annotate-file "~/.annotations"
   "File where annotations are stored."
   :type 'file
   :group 'annotate)
 
-;;;###autoload
 (defface annotate-highlight
   '((t (:underline "coral")))
   "Face for annotation highlights."
   :group 'annotate)
 
-;;;###autoload
 (defface annotate-annotation
   '((t (:background "coral" :foreground "black")))
   "Face for annotations."
   :group 'annotate)
 
-;;;###autoload
 (defcustom annotate-annotation-column 85
   "Where annotations appear."
   :type 'number
   :group 'annotate)
 
-;;;###autoload
 (defcustom annotate-diff-export-context 2
   "How many lines of context to include in diff export."
   :type 'number
   :group 'annotate)
 
-;;;###autoload
 (defcustom annotate-use-messages t
   "Whether status messages may appear in the minibuffer."
   :type 'boolean
   :group 'annotate)
 
-;;;###autoload
 (defcustom annotate-integrate-marker " ANNOTATION: "
   "Marker that is written before every integrated annotation."
   :type 'string
@@ -128,7 +121,6 @@
    nil '((annotate--font-lock-matcher (2 (annotate--annotation-builder))
                                       (1 (annotate--change-guard))))))
 
-;;;###autoload
 (defun annotate-annotate ()
   "Create, modify, or delete annotation."
   (interactive)
@@ -141,7 +133,6 @@
   (font-lock-fontify-block 1)
   (set-buffer-modified-p t))
 
-;;;###autoload
 (defun annotate-next-annotation ()
   "Move point to the next annotation."
   (interactive)
@@ -164,7 +155,6 @@
       ;; jump to first overlay list
       (goto-char (overlay-start (nth 0 overlays))))))
 
-;;;###autoload
 (defun annotate-previous-annotation ()
   "Move point to the previous annotation."
   (interactive)
@@ -184,7 +174,6 @@
       ;; jump to first overlay in list
       (goto-char (overlay-start (nth 0 overlays))))))
 
-;;;###autoload
 (defun annotate-save-annotations ()
   "Save all annotations to disk."
   (interactive)
@@ -208,7 +197,6 @@
     (if annotate-use-messages
         (message "Annotations saved."))))
 
-;;;###autoload
 (defun annotate-integrate-annotations ()
   "Write all annotations into the file as comments below the annotated line.
 An example might look like this:"
@@ -268,7 +256,6 @@ An example might look like this:"
       (remove-text-properties
          (point) (1+ (point)) '(display nil)))))
 
-;;;###autoload
 (defun annotate-export-annotations ()
   "Export all annotations as a unified diff file.
 An example might look like this:
@@ -528,7 +515,6 @@ an overlay and it's annotation."
                       (1+ (- (line-number-at-pos end) (line-number-at-pos 
start))))))
   (format "-%i,%i +%i,%i" start-line diff-size start-line diff-size)))
 
-;;;###autoload
 (defun annotate-load-annotations ()
   "Load all annotations from disk."
   (interactive)
@@ -553,7 +539,6 @@ an overlay and it's annotation."
     (if annotate-use-messages
         (message "Annotations loaded."))))
 
-;;;###autoload
 (defun annotate-clear-annotations ()
   "Clear all current annotations."
   (interactive)



reply via email to

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