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

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

[nongnu] elpa/undo-fu-session 7c095e863c 26/53: Cleanup: remove redundan


From: ELPA Syncer
Subject: [nongnu] elpa/undo-fu-session 7c095e863c 26/53: Cleanup: remove redundant groups
Date: Thu, 7 Jul 2022 12:05:19 -0400 (EDT)

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

    Cleanup: remove redundant groups
---
 undo-fu-session.el | 22 +++++-----------------
 1 file changed, 5 insertions(+), 17 deletions(-)

diff --git a/undo-fu-session.el b/undo-fu-session.el
index 2d4b3ebb93..69eeb1710f 100644
--- a/undo-fu-session.el
+++ b/undo-fu-session.el
@@ -59,42 +59,33 @@
   :group 'convenience)
 
 (defcustom undo-fu-session-linear nil
-  "Store linear history (without redo)."
-  :group 'undo-fu-session
+  "Store linear history (without redo), otherwise store the full history."
   :type 'boolean)
 
 (defcustom undo-fu-session-directory
   (locate-user-emacs-file "undo-fu-session" ".emacs-undo-fu-session")
   "The directory to store undo data."
-  :group 'undo-fu-session
   :type 'string)
 
 (defcustom undo-fu-session-ignore-encrypted-files t
   "Ignore encrypted files for undo session."
-  :group 'undo-fu-session
   :type 'boolean)
 
-(defcustom undo-fu-session-compression t
-  "Store files compressed."
-  :group 'undo-fu-session
-  :type 'boolean)
+(defcustom undo-fu-session-compression t "Store files compressed." :type 
'boolean)
 
 (defcustom undo-fu-session-incompatible-files '()
   "List of REGEXP or FUNCTION for matching files to ignore for undo session."
-  :group 'undo-fu-session
   :type '(repeat (choice regexp function)))
 
 (defcustom undo-fu-session-incompatible-major-modes nil
   "List of major-modes in which saving undo data should not be performed."
-  :type '(repeat symbol)
-  :group 'undo-fu-session)
+  :type '(repeat symbol))
 
 (defcustom undo-fu-session-file-limit nil
   "Number of files to store, nil to disable limiting entirely.
 
 Enforcing removes the oldest files."
-  :type 'integer
-  :group 'undo-fu-session)
+  :type 'integer)
 
 
 ;; ---------------------------------------------------------------------------
@@ -620,7 +611,6 @@ Argument PENDING-LIST an `pending-undo-list'. compatible 
list."
 ;;;###autoload
 (define-minor-mode undo-fu-session-mode
   "Toggle saving the undo data in the current buffer (Undo-Fu Session Mode)."
-  :group 'undo-fu-session
   :global nil
 
   (cond
@@ -633,9 +623,7 @@ Argument PENDING-LIST an `pending-undo-list'. compatible 
list."
 (define-globalized-minor-mode
   global-undo-fu-session-mode
   undo-fu-session-mode
-  undo-fu-session-mode-turn-on
-
-  :group 'undo-fu-session)
+  undo-fu-session-mode-turn-on)
 
 (provide 'undo-fu-session)
 ;;; undo-fu-session.el ends here



reply via email to

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