]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix customisation buffer for dired group
authorVisuwesh <visuweshm@gmail.com>
Tue, 11 Jun 2024 05:21:39 +0000 (10:51 +0530)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Jun 2024 09:29:04 +0000 (11:29 +0200)
* lisp/dired-aux.el
(dired-create-destination-dirs-on-trailing-dirsep): Actually
concat the string.  (Bug#71490)

(cherry picked from commit 076e8ad5fc518e93dc7ab23b9dee007205580fbe)

lisp/dired-aux.el

index 66763d41593cdec49e6ff797ba3d67dd941144b2..7f28e307a0980fe9f4be987332e575c5075f1e20 100644 (file)
@@ -2262,14 +2262,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")