GNU bug report logs -
#41974
28.0.50; Some vc commands refuse to work when called on non-file buffer
Previous Next
Reported by: Juri Linkov <juri <at> linkov.net>
Date: Sun, 21 Jun 2020 00:00:02 UTC
Severity: normal
Tags: fixed
Fixed in version 28.0.50
Done: Juri Linkov <juri <at> linkov.net>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
On 22.06.2020 01:51, Juri Linkov wrote:
> Strange, this patch has no effect, the same error remains.
Sorry, that was a brain fart.
How about this:
diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el
index 9b12d44978..6bb72d8976 100644
--- a/lisp/vc/vc.el
+++ b/lisp/vc/vc.el
@@ -1074,11 +1074,11 @@ vc-deduce-fileset
(progn ;FIXME: Why not `with-current-buffer'?
--Stef.
(set-buffer vc-parent-buffer)
(vc-deduce-fileset not-state-changing allow-unregistered
state-model-only-files)))
- ((and (derived-mode-p 'log-view-mode)
+ ((and (not buffer-file-name)
(setq backend (vc-responsible-backend default-directory)))
(list backend nil))
((not buffer-file-name)
- (error "Buffer %s is not associated with a file" (buffer-name)))
+ (error "Buffer %s is not recognized by any VC backend"
(buffer-name)))
((and allow-unregistered (not (vc-registered buffer-file-name)))
(if state-model-only-files
(list (vc-backend-for-registration (buffer-file-name))
This bug report was last modified 5 years and 20 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.