>From 628afa281e1c050a9fe49a4c362b1572c439c4d2 Mon Sep 17 00:00:00 2001 From: Visuwesh Date: Tue, 11 Jun 2024 10:51:39 +0530 Subject: [PATCH] ; Fix customisation buffer for dired group * lisp/dired-aux.el (dired-create-destination-dirs-on-trailing-dirsep): Actually concat the string. --- lisp/dired-aux.el | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/lisp/dired-aux.el b/lisp/dired-aux.el index a2ce3083cfe..a0fa1ce6fe5 100644 --- a/lisp/dired-aux.el +++ b/lisp/dired-aux.el @@ -2218,14 +2218,14 @@ dired-create-destination-dirs-on-trailing-dirsep 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") -- 2.43.0