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

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

[nongnu] elpa/page-break-lines 6fb993a420 61/80: There's no need to auto


From: ELPA Syncer
Subject: [nongnu] elpa/page-break-lines 6fb993a420 61/80: There's no need to autoload the custom vars
Date: Tue, 5 Sep 2023 04:03:08 -0400 (EDT)

branch: elpa/page-break-lines
commit 6fb993a42059b58d1a0219006f2d61ebd3b2c9e6
Author: Steve Purcell <steve@sanityinc.com>
Commit: Steve Purcell <steve@sanityinc.com>

    There's no need to autoload the custom vars
    
    Fixes #30
---
 page-break-lines.el | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/page-break-lines.el b/page-break-lines.el
index fa83aa5e74..2f71ecaf1d 100644
--- a/page-break-lines.el
+++ b/page-break-lines.el
@@ -63,33 +63,28 @@
   :prefix "page-break-lines-"
   :group 'faces)
 
-;;;###autoload
 (defcustom page-break-lines-char ?─
   "Character used to render page break lines."
   :type 'character
   :group 'page-break-lines)
 
-;;;###autoload
 (defcustom page-break-lines-lighter " PgLn"
   "Mode-line indicator for `page-break-lines-mode'."
   :type '(choice (const :tag "No lighter" "") string)
   :group 'page-break-lines)
 
-;;;###autoload
 (defcustom page-break-lines-max-width nil
   "If non-nil, maximum width (in characters) of page break indicator.
 If nil, indicator will span the width of the frame."
   :type '(choice integer (const :tag "Full width" nil))
   :group 'page-break-lines)
 
-;;;###autoload
 (defcustom page-break-lines-modes
   '(emacs-lisp-mode lisp-mode scheme-mode compilation-mode outline-mode 
help-mode)
   "Modes in which to enable `page-break-lines-mode'."
   :type '(repeat symbol)
   :group 'page-break-lines)
 
-;;;###autoload
 (defface page-break-lines
   '((t :inherit font-lock-comment-face :bold nil :italic nil))
   "Face used to colorize page break lines.



reply via email to

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