branch: elpa/undo-fu-session
commit c613e8c17697d4c69751d41742db4ef3ef745de5
Author: Campbell Barton <[email protected]>
Commit: Campbell Barton <[email protected]>
Use directory type for directory defcustoms
---
undo-fu-session.el | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/undo-fu-session.el b/undo-fu-session.el
index f46ccd6082f..50886fa2165 100755
--- a/undo-fu-session.el
+++ b/undo-fu-session.el
@@ -100,7 +100,7 @@
(defcustom undo-fu-session-directory
(locate-user-emacs-file "undo-fu-session" ".emacs-undo-fu-session")
"The directory to store undo data."
- :type 'string)
+ :type 'directory)
(defcustom undo-fu-session-make-file-name-function
'undo-fu-session-make-file-name
"The function that computes the session file-path for the current buffer.
@@ -125,7 +125,7 @@ The returned path must use the extension argument."
"Temporary directories (must be absolute).
Used by `undo-fu-session-ignore-temp-files' for directories to consider
temporary."
- :type '(repeat string))
+ :type '(repeat directory))
(defcustom undo-fu-session-compression 'gz
"The type of compression to use or nil.