[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] scratch/evil 0a03b8d2ad 6/8: Remove redundant `:group` args
From: |
Stefan Monnier |
Subject: |
[nongnu] scratch/evil 0a03b8d2ad 6/8: Remove redundant `:group` args |
Date: |
Sun, 2 Jul 2023 17:38:08 -0400 (EDT) |
branch: scratch/evil
commit 0a03b8d2ad65ea0f9c422d635474b4290b78b284
Author: Stefan Monnier <monnier@iro.umontreal.ca>
Commit: Stefan Monnier <monnier@iro.umontreal.ca>
Remove redundant `:group` args
In the absence of `:group`, `defcustom` and `defface` default to
the group that was last defined in the same file.
* evil-digraphs.el (evil-digraphs-table-user):
* evil-jumps.el: Remove redundant `:group` args.
---
evil-digraphs.el | 3 +--
evil-jumps.el | 15 +++++----------
2 files changed, 6 insertions(+), 12 deletions(-)
diff --git a/evil-digraphs.el b/evil-digraphs.el
index 7344bd9d00..180a57626b 100644
--- a/evil-digraphs.el
+++ b/evil-digraphs.el
@@ -42,8 +42,7 @@ where the digraph is a list of two characters.
See also `evil-digraphs-table'."
:type '(alist :key-type (list character character)
:value-type character)
- :require 'evil-digraphs
- :group 'evil-digraphs)
+ :require 'evil-digraphs)
(defconst evil-digraphs-table
'(((?N ?U) . ?\x00)
diff --git a/evil-jumps.el b/evil-jumps.el
index 93bf4cbcb6..2fadb8b205 100644
--- a/evil-jumps.el
+++ b/evil-jumps.el
@@ -38,28 +38,23 @@
(defcustom evil-jumps-cross-buffers t
"When non-nil, the jump commands can cross borders between buffers.
Otherwise the jump commands act only within the current buffer."
- :type 'boolean
- :group 'evil-jumps)
+ :type 'boolean)
(defcustom evil-jumps-max-length 100
"The maximum number of jumps to keep track of."
- :type 'integer
- :group 'evil-jumps)
+ :type 'integer)
(defcustom evil-jumps-pre-jump-hook nil
"Hooks to run just before jumping to a location in the jump list."
- :type 'hook
- :group 'evil-jumps)
+ :type 'hook)
(defcustom evil-jumps-post-jump-hook nil
"Hooks to run just after jumping to a location in the jump list."
- :type 'hook
- :group 'evil-jumps)
+ :type 'hook)
(defcustom evil-jumps-ignored-file-patterns '("COMMIT_EDITMSG$" "TAGS$")
"List of regexps to exclude file path from inclusion in the jump list."
- :type '(repeat string)
- :group 'evil-jumps)
+ :type '(repeat string))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
- [nongnu] branch scratch/evil created (now 30e812bb6c), Stefan Monnier, 2023/07/02
- [nongnu] scratch/evil 891af30ef2 2/8: Better follow conventions for use of ' in docstrings, Stefan Monnier, 2023/07/02
- [nongnu] scratch/evil 49ba6e6fc5 5/8: Use lexical-binding everywhere, Stefan Monnier, 2023/07/02
- [nongnu] scratch/evil b9298c600f 4/8: (evil-with-delay): New macro, extracted from `evil-delay`, Stefan Monnier, 2023/07/02
- [nongnu] scratch/evil f77b9d3723 1/8: evil-pkg.el: Remove file, Stefan Monnier, 2023/07/02
- [nongnu] scratch/evil 30e812bb6c 8/8: Misc minor changes, Stefan Monnier, 2023/07/02
- [nongnu] scratch/evil 9456d95bef 3/8: Prefer #' to quote function names, Stefan Monnier, 2023/07/02
- [nongnu] scratch/evil a3657caba8 7/8: Replace uses of `defadvice` with `advice-add`, Stefan Monnier, 2023/07/02
- [nongnu] scratch/evil 0a03b8d2ad 6/8: Remove redundant `:group` args,
Stefan Monnier <=