Fix customisation buffer for dired group

* lisp/dired-aux.el
(dired-create-destination-dirs-on-trailing-dirsep): Actually
concat the string.  (Bug#71490)
This commit is contained in:
Visuwesh 2024-06-11 10:51:39 +05:30 committed by Stefan Kangas
parent 3199b8584e
commit 076e8ad5fc

View file

@ -2273,14 +2273,14 @@ option are non-nil, renaming a directory named `old_name' to
trailing /) is given or this option or
`dired-create-destination-dirs' is nil, `old_name' will be
renamed to `new_name'."
:type '(choice
:type `(choice
(const :tag
(concat "Do not treat destination dirs with a "
"trailing directory separator specially")
,(concat "Do not treat destination dirs with a "
"trailing directory separator specially")
nil)
(const :tag
(concat "Treat destination dirs with trailing "
"directory separator specially")
,(concat "Treat destination dirs with trailing "
"directory separator specially")
t))
:group 'dired
:version "29.1")