mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Fix custom type of recent dired-aux additions
* lisp/dired-aux.el (dired-compress-file-default-suffix) (dired-compress-directory-default-suffix): Fix :type.
This commit is contained in:
parent
b4e1fdfe21
commit
e100ee84e3
1 changed files with 2 additions and 2 deletions
|
|
@ -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")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue