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:
parent
3199b8584e
commit
076e8ad5fc
1 changed files with 5 additions and 5 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Reference in a new issue