]> git.eshelyaron.com Git - emacs.git/commitdiff
Revert part of 3572613550f5d1d0b3392dbc809b32f3989e2981 (bug#39452)
authorJuri Linkov <juri@linkov.net>
Fri, 27 Aug 2021 17:09:08 +0000 (20:09 +0300)
committerJuri Linkov <juri@linkov.net>
Fri, 27 Aug 2021 17:12:30 +0000 (20:12 +0300)
* lisp/vc/vc-git.el (vc-git-rename-file): Don't use vc-git--literal-pathspecs.

lisp/vc/vc-git.el

index 396d55adb2db48d27deeb76fc7a45f35a3d8d61e..1cd200cd1346ea60d7f7b82739598d8d404e4df7 100644 (file)
@@ -1555,7 +1555,7 @@ This requires git 1.8.4 or later, for the \"-L\" option of \"git log\"."
   (vc-git-command nil 0 (vc-git--literal-pathspecs file) "rm" "-f" "--"))
 
 (defun vc-git-rename-file (old new)
-  (vc-git-command nil 0 (vc-git--literal-pathspecs (list old new)) "mv" "-f" "--"))
+  (vc-git-command nil 0 (list old new) "mv" "-f" "--"))
 
 (defun vc-git-mark-resolved (files)
   (vc-git-command nil 0 (vc-git--literal-pathspecs files) "add"))