all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#11605: 24.1.50; vc-ediff revert annoyance
@ 2012-06-02  4:31 William Xu
  2016-02-24  6:33 ` Lars Ingebrigtsen
  0 siblings, 1 reply; 8+ messages in thread
From: William Xu @ 2012-06-02  4:31 UTC (permalink / raw)
  To: 11605

[-- Attachment #1: Type: text/plain, Size: 579 bytes --]

Steps to reproduce:

  1. emacs -Q
  2. visit a version controlled file, say `foo'.
  3. M-x vc-ediff, run it couple of times.

You will see this annoying message many times:

  File foo.~master~ changed on disk.  Reread from disk? (yes or no)

The reason is the ~master~ file is checked out everytime we run
vc-ediff, and after ediff session, the ~master~ buffer is always left
there, hence, when running vc-ediff multiple times it constantly asks
you whether you want to revert.  Why not let it revert automatically?

How about this patch?

-- 
William

http://xwl.appspot.com

[-- Attachment #2: 0001-vc-find-revision-Auto-revert-file-revision-buffer-qu.patch --]
[-- Type: application/octet-stream, Size: 1097 bytes --]

From d2af0f4dcc81b39d9360135244d6870388a264a3 Mon Sep 17 00:00:00 2001
From: William Xu <william.xwl@gmail.com>
Date: Sat, 2 Jun 2012 12:16:45 +0800
Subject: [PATCH] (vc-find-revision): Auto revert file revision buffer
 quietly.

---
 lisp/vc/vc.el |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el
index 87e4e1c..bd337d0 100644
--- a/lisp/vc/vc.el
+++ b/lisp/vc/vc.el
@@ -1815,11 +1815,13 @@ Use BACKEND as the VC backend if specified."
 		(delete-file filename))))
 	  (vc-mode-line file))
 	(message "Checking out %s...done" filename)))
-    (let ((result-buf (find-file-noselect filename)))
+    (let ((result-buf (or (get-file-buffer filename)
+                          (find-file-noselect filename))))
       (with-current-buffer result-buf
 	;; Set the parent buffer so that things like
 	;; C-x v g, C-x v l, ... etc work.
-	(set (make-local-variable 'vc-parent-buffer) filebuf))
+	(set (make-local-variable 'vc-parent-buffer) filebuf)
+        (revert-buffer nil t))
       result-buf)))
 
 ;; Header-insertion code
-- 
1.7.8.2


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2019-06-27 15:16 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-02  4:31 bug#11605: 24.1.50; vc-ediff revert annoyance William Xu
2016-02-24  6:33 ` Lars Ingebrigtsen
2016-02-26  0:38   ` Dmitry Gutov
2016-02-26  6:01     ` Lars Ingebrigtsen
2016-02-26 10:36       ` Dmitry Gutov
2016-02-26  9:38     ` William Xu
2016-02-26 10:10       ` Dmitry Gutov
2019-06-27 15:16     ` Lars Ingebrigtsen

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.