]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix custom type of recent dired-aux additions
authorGlenn Morris <rgm@gnu.org>
Wed, 19 May 2021 15:28:35 +0000 (08:28 -0700)
committerGlenn Morris <rgm@gnu.org>
Wed, 19 May 2021 15:28:35 +0000 (08:28 -0700)
* lisp/dired-aux.el (dired-compress-file-default-suffix)
(dired-compress-directory-default-suffix): Fix :type.

lisp/dired-aux.el

index eb43ab187d59a43c0162cbfc7cc00257beea0171..d57237f03838ccd57d405657a4c16a788490422f 100644 (file)
@@ -1169,7 +1169,7 @@ ARGS are command switches passed to PROGRAM.")
 (defcustom dired-compress-file-default-suffix nil
   "Default suffix for compressing a single file.
 If nil, \".gz\" will be used."
-  :type 'string
+  :type '(choice (const :tag ".gz" nil) string)
   :group 'dired
   :version "28.1")
 
@@ -1190,7 +1190,7 @@ output file.  %i path(s) are relative, while %o is absolute.")
 (defcustom dired-compress-directory-default-suffix nil
   "Default suffix for compressing a directory.
 If nil, \".tar.gz\" will be used."
-  :type 'string
+  :type '(choice (const :tag ".tar.gz" nil) string)
   :group 'dired
   :version "28.1")