diff options
author | Richard Hansen <rhansen@rhansen.org> | 2022-06-18 14:11:01 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-06-18 14:11:01 +0200 |
commit | 422f958030f1c105c8f62f670b82875559b38e69 (patch) | |
tree | 263f4961f961d62b4a430835eaedfaf8287db2e8 /lisp/emacs-lisp | |
parent | 024bbcb35ebe70ab9ad4c79265c4e83fc1d3b732 (diff) | |
download | emacs-422f958030f1c105c8f62f670b82875559b38e69.tar.gz emacs-422f958030f1c105c8f62f670b82875559b38e69.tar.bz2 emacs-422f958030f1c105c8f62f670b82875559b38e69.zip |
Fix invalid defcustom :group when :predicate is used
* lisp/emacs-lisp/easy-mmode.el (define-globalized-minor-mode): Fix
invalid `:group' argument for the `-modes' defcustom that is created
when `:predicate' is used (bug#56049).
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/easy-mmode.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el index 1d93fe48014..df379035038 100644 --- a/lisp/emacs-lisp/easy-mmode.el +++ b/lisp/emacs-lisp/easy-mmode.el @@ -555,7 +555,7 @@ and nil means \"don't use\". There's an implicit nil at the end of the list." mode) :type '(repeat sexp) - :group ,group)) + ,@group)) ;; Autoloading define-globalized-minor-mode autoloads everything ;; up-to-here. |