[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.
- [nongnu] elpa/page-break-lines d310e75652 05/80: Rename face from page-break-lines-face to page-break-lines, (continued)
- [nongnu] elpa/page-break-lines d310e75652 05/80: Rename face from page-break-lines-face to page-break-lines, ELPA Syncer, 2023/09/05
- [nongnu] elpa/page-break-lines 58c0dd0ace 10/80: Add blog/twitter links, ELPA Syncer, 2023/09/05
- [nongnu] elpa/page-break-lines 908581b869 23/80: Shorten rule width slightly when word-wrap is on (see #5), ELPA Syncer, 2023/09/05
- [nongnu] elpa/page-break-lines 55d36c6af4 12/80: Merge pull request #1 from lunaryorn/patch-1, ELPA Syncer, 2023/09/05
- [nongnu] elpa/page-break-lines 87e801efb8 55/80: Merge pull request #20 from peniblec/master, ELPA Syncer, 2023/09/05
- [nongnu] elpa/page-break-lines 82f9100312 46/80: Merge pull request #15 from xiongtx/autoload-defcustom, ELPA Syncer, 2023/09/05
- [nongnu] elpa/page-break-lines 2e1d274e11 60/80: Prefer "elisp" for code blocks, ELPA Syncer, 2023/09/05
- [nongnu] elpa/page-break-lines 31f1fbe0e3 62/80: Prefer set-display-table-slot to raw aset, ELPA Syncer, 2023/09/05
- [nongnu] elpa/page-break-lines c82759f267 50/80: Add Patreon badge, ELPA Syncer, 2023/09/05
- [nongnu] elpa/page-break-lines d16df692b3 48/80: Fix checkdoc warning, ELPA Syncer, 2023/09/05
- [nongnu] elpa/page-break-lines 6fb993a420 61/80: There's no need to autoload the custom vars,
ELPA Syncer <=
- [nongnu] elpa/page-break-lines 5872e5d51c 54/80: Fix disabling when major mode is derived from one of p-b-l-modes, ELPA Syncer, 2023/09/05
- [nongnu] elpa/page-break-lines fd3b7e38ad 53/80: Drop redundant byte-compile-warnings flag, ELPA Syncer, 2023/09/05
- [nongnu] elpa/page-break-lines cc283621c6 77/80: Add Emacs 28.1 to CI matrix, ELPA Syncer, 2023/09/05
- [nongnu] elpa/page-break-lines 3b8549cd41 75/80: Add Emacs 27.2 to CI matrix, ELPA Syncer, 2023/09/05
- [nongnu] elpa/page-break-lines c4283f580f 79/80: Release 0.15, ELPA Syncer, 2023/09/05
- [nongnu] elpa/page-break-lines 85cec0af15 11/80: Enable page-break-lines in outline-mode, ELPA Syncer, 2023/09/05
- [nongnu] elpa/page-break-lines fc6e1c648c 14/80: Merge pull request #2 from drothlis/derived-modes, ELPA Syncer, 2023/09/05
- [nongnu] elpa/page-break-lines 1f71eb258a 18/80: Add note about the use of text-scale-{increase, decrease}, ELPA Syncer, 2023/09/05
- [nongnu] elpa/page-break-lines 077aba9ced 20/80: Set checkdoc-minor-mode locally using var, not exec, ELPA Syncer, 2023/09/05
- [nongnu] elpa/page-break-lines a294b61364 30/80: Swap section order to avoid byte compilation warning, ELPA Syncer, 2023/09/05