diff options
| author | Eli Zaretskii | 2025-12-20 09:47:39 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2025-12-20 09:47:39 +0200 |
| commit | 54eae320f5993ad55047559a51dde56fd6abd5a8 (patch) | |
| tree | c38ac24ecceb881c053da8a1c8584ede37c02784 | |
| parent | 4d11449c96c80e2ea402c88fe637958b8c0cf940 (diff) | |
| download | emacs-54eae320f5993ad55047559a51dde56fd6abd5a8.tar.gz emacs-54eae320f5993ad55047559a51dde56fd6abd5a8.zip | |
; * lisp/vc/vc-git.el (vc-git-registered): Fix remote files (bug#80035).
| -rw-r--r-- | lisp/vc/vc-git.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el index 53203a9e386..18ba7427b1d 100644 --- a/lisp/vc/vc-git.el +++ b/lisp/vc/vc-git.el | |||
| @@ -299,7 +299,7 @@ Good example of file name that needs this: \"test[56].xx\".") | |||
| 299 | ;; with other backend's `vc-*-registered' functions which are | 299 | ;; with other backend's `vc-*-registered' functions which are |
| 300 | ;; quieter in the case that the VCS isn't installed. So check | 300 | ;; quieter in the case that the VCS isn't installed. So check |
| 301 | ;; up here that git(1) is available. See also bug#18481. | 301 | ;; up here that git(1) is available. See also bug#18481. |
| 302 | (executable-find vc-git-program) | 302 | (executable-find vc-git-program t) |
| 303 | (with-temp-buffer | 303 | (with-temp-buffer |
| 304 | (let* (process-file-side-effects | 304 | (let* (process-file-side-effects |
| 305 | ;; Do not use the `file-name-directory' here: git-ls-files | 305 | ;; Do not use the `file-name-directory' here: git-ls-files |