]> git.eshelyaron.com Git - emacs.git/commitdiff
Rename arguments for clarity
authorDmitry Gutov <dgutov@yandex.ru>
Thu, 26 Aug 2021 01:48:05 +0000 (04:48 +0300)
committerDmitry Gutov <dgutov@yandex.ru>
Thu, 26 Aug 2021 01:48:05 +0000 (04:48 +0300)
* lisp/vc/vc-git.el (vc-git--literal-pathspecs)
(vc-git--literal-pathspecs):
Rename arguments for clarity (bug#39452).

lisp/vc/vc-git.el

index 779326be3fd97dff9e3ac7a978b1e63dae896ec0..396d55adb2db48d27deeb76fc7a45f35a3d8d61e 100644 (file)
@@ -242,14 +242,14 @@ included in the completions."
 ;;;###autoload         (load "vc-git" nil t)
 ;;;###autoload         (vc-git-registered file))))
 
-(defun vc-git--literal-pathspec (pathspec)
-  "Prepend :(literal) path magic to PATHSPEC."
-  ;; Good example of PATHSPEC that needs this: "test[56].xx".
-  (and pathspec (concat ":(literal)" (file-local-name pathspec))))
-
-(defun vc-git--literal-pathspecs (pathspecs)
-  "Prepend :(literal) path magic to PATHSPECS."
-  (mapcar #'vc-git--literal-pathspec pathspecs))
+(defun vc-git--literal-pathspec (file)
+  "Prepend :(literal) path magic to FILE."
+  ;; Good example of file name that needs this: "test[56].xx".
+  (and file (concat ":(literal)" (file-local-name file))))
+
+(defun vc-git--literal-pathspecs (files)
+  "Prepend :(literal) path magic to FILES."
+  (mapcar #'vc-git--literal-pathspec files))
 
 (defun vc-git-registered (file)
   "Check whether FILE is registered with git."