]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix Wdired with relative and abbreviated file names
authorEli Zaretskii <eliz@gnu.org>
Sun, 16 Jul 2023 09:15:24 +0000 (12:15 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 16 Jul 2023 09:15:24 +0000 (12:15 +0300)
* lisp/wdired.el (wdired-finish-edit): Support Dired buffers where
'dired-directory' is a list made of relative or abbreviated file
names.  (Bug#64606)

lisp/wdired.el

index 5c745cc9aab855358562a192288990823fbee634..7b9c75d36b15f409f6db9451464fee6e73c28e20 100644 (file)
@@ -556,8 +556,24 @@ non-nil means return old filename."
                         ;; been modified with their new name keeping
                         ;; the ones that are unmodified at the same place.
                         (cl-loop for f in (cdr dired-directory)
-                                 collect (or (assoc-default f files-renamed)
-                                             f))))))
+                                 collect
+                                 (or (assoc-default f files-renamed)
+                                     ;; F could be relative or
+                                     ;; abbreviated, whereas
+                                     ;; files-renamed always consists
+                                     ;; of absolute file names.
+                                     (let ((relative
+                                            (not (file-name-absolute-p f)))
+                                           (match
+                                            (assoc-default (expand-file-name f)
+                                                           files-renamed)))
+                                       (cond
+                                        ;; If it was relative, convert
+                                        ;; the new name back to relative.
+                                        ((and match relative)
+                                         (file-relative-name match))
+                                        (t match)))
+                                     f))))))
          ;; Re-sort the buffer.
          (revert-buffer)
          (let ((inhibit-read-only t))