emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#50422: closed (28.0.50; vc-git-checkout: accept nil as first argumen


From: GNU bug Tracking System
Subject: bug#50422: closed (28.0.50; vc-git-checkout: accept nil as first argument)
Date: Tue, 07 Sep 2021 23:35:02 +0000

Your message dated Wed, 8 Sep 2021 02:34:09 +0300
with message-id <14b9e574-d4e0-b5a9-aa1c-10985f2c149a@yandex.ru>
and subject line Re: bug#50422: 28.0.50; vc-git-checkout: accept nil as first 
argument
has caused the debbugs.gnu.org bug report #50422,
regarding 28.0.50; vc-git-checkout: accept nil as first argument
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
50422: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=50422
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: 28.0.50; vc-git-checkout: accept nil as first argument Date: Mon, 06 Sep 2021 09:11:15 +0200
X-Debbugs-Cc: 39452@debbugs.gnu.org

Before the fix from bug#39452, the following was a valid call:

(vc-git-checkout nil "master")

Note that `vc-git-command' handles a nil 3rd argument.
(I rely in such a behavior).

Since we call now `vc-git--literal-pathspec' in several commands, then
we could add a check at the beginning of this function:

--8<-----------------------------cut here---------------start------------->8---
diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el
index 037fbcbc48..18ec4b6075 100644
--- a/lisp/vc/vc-git.el
+++ b/lisp/vc/vc-git.el
@@ -245,11 +245,12 @@ vc-git-update-on-retrieve-tag
 (defun vc-git--literal-pathspec (file)
   "Prepend :(literal) path magic to FILE."
   ;; Good example of file name that needs this: "test[56].xx".
-  (let ((lname (file-local-name file)))
-    ;; Expand abbreviated file names.
-    (when (file-name-absolute-p lname)
-      (setq lname (expand-file-name lname)))
-    (and file (concat ":(literal)" lname))))
+  (when (stringp file)
+    (let ((lname (file-local-name file)))
+      ;; Expand abbreviated file names.
+      (when (file-name-absolute-p lname)
+        (setq lname (expand-file-name lname)))
+      (and file (concat ":(literal)" lname)))))
 
 (defun vc-git--literal-pathspecs (files)
   "Prepend :(literal) path magic to FILES."
--8<-----------------------------cut here---------------end--------------->8---


In GNU Emacs 28.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.30, cairo 
version 1.16.0)
 of 2021-09-05 built on localhost.example.com
Repository revision: c61e2bff44bc494be15ba0a9f0f964389fd45b25
Repository branch: 46374-fix-regression
Windowing system distributor 'The X.Org Foundation', version 11.0.12013000
System Description: openSUSE Tumbleweed




--- End Message ---
--- Begin Message --- Subject: Re: bug#50422: 28.0.50; vc-git-checkout: accept nil as first argument Date: Wed, 8 Sep 2021 02:34:09 +0300 User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.13.0
Hi Tino,

On 06.09.2021 10:11, Tino Calancha wrote:
X-Debbugs-Cc:39452@debbugs.gnu.org

Before the fix from bug#39452, the following was a valid call:

(vc-git-checkout nil "master")

Note that `vc-git-command' handles a nil 3rd argument.
(I rely in such a behavior).

Since we call now `vc-git--literal-pathspec' in several commands, then
we could add a check at the beginning of this function:

Yes, I broke this with the most recent fix in that area. Sorry.

Should be fixed now with commit ff2c4a8353.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]