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

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

[nongnu] elpa/undo-fu 7ec3cc558e 68/82: Cleanup: use defgroup


From: ELPA Syncer
Subject: [nongnu] elpa/undo-fu 7ec3cc558e 68/82: Cleanup: use defgroup
Date: Thu, 7 Jul 2022 12:04:55 -0400 (EDT)

branch: elpa/undo-fu
commit 7ec3cc558ed4ad8dfc80117bac02b750281112c1
Author: Campbell Barton <ideasman42@gmail.com>
Commit: Campbell Barton <ideasman42@gmail.com>

    Cleanup: use defgroup
    
    Also bump minimum version for `format-message`.
---
 undo-fu.el | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/undo-fu.el b/undo-fu.el
index f2463f4b1b..fac420494a 100644
--- a/undo-fu.el
+++ b/undo-fu.el
@@ -6,7 +6,7 @@
 
 ;; URL: https://gitlab.com/ideasman42/emacs-undo-fu
 ;; Version: 0.4
-;; Package-Requires: ((emacs "24.3"))
+;; Package-Requires: ((emacs "25.1"))
 
 ;; This program is free software; you can redistribute it and/or modify
 ;; it under the terms of the GNU General Public License as published by
@@ -50,18 +50,18 @@
 ;; ---------------------------------------------------------------------------
 ;; Custom Variables
 
+(defgroup undo-fu nil "Configure default behavior for undo-fu wrapper." :group 
'convenience)
+
 (defcustom undo-fu-allow-undo-in-region nil
   "When t, use `undo-in-region' when a selection is present.
 Otherwise `undo-in-region' is never used, since it doesn't support `undo-only',
 causing undo-fu to work with reduced functionality when a selection exists."
-  :group 'undo-fu
   :type 'boolean)
 
 (defcustom undo-fu-ignore-keyboard-quit nil
   "When t, don't use `keyboard-quit' to disable linear undo/redo behavior.
 
 Instead, explicitly call `undo-fu-disable-checkpoint'."
-  :group 'undo-fu
   :type 'boolean)
 
 ;; ---------------------------------------------------------------------------



reply via email to

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