]> git.eshelyaron.com Git - emacs.git/commitdiff
Expand the full file name
authorDmitry Gutov <dgutov@yandex.ru>
Mon, 11 Oct 2021 13:37:55 +0000 (16:37 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Mon, 11 Oct 2021 13:43:55 +0000 (16:43 +0300)
* lisp/vc/vc-git.el (vc-git--literal-pathspec):
Expand the full file name, not just the local part (bug#51112).

lisp/vc/vc-git.el

index eca8d547a90e78d18cc729c7e9cee7b3f22c2c43..35c0838dd6f3525cd2e17ea0ee757aa231c1ca91 100644 (file)
@@ -242,15 +242,14 @@ included in the completions."
 ;;;###autoload         (load "vc-git" nil t)
 ;;;###autoload         (vc-git-registered file))))
 
+;; Good example of file name that needs this: "test[56].xx".
 (defun vc-git--literal-pathspec (file)
   "Prepend :(literal) path magic to FILE."
-  ;; Good example of file name that needs this: "test[56].xx".
   (when file
-    (let ((lname (file-local-name file)))
-      ;; Expand abbreviated file names.
-      (when (file-name-absolute-p lname)
-        (setq lname (expand-file-name lname)))
-      (concat ":(literal)" lname))))
+    ;; Expand abbreviated file names.
+    (when (file-name-absolute-p file)
+      (setq file (expand-file-name file)))
+    (concat ":(literal)" (file-local-name file))))
 
 (defun vc-git--literal-pathspecs (files)
   "Prepend :(literal) path magic to FILES."