summaryrefslogtreecommitdiff
path: root/lisp/vc-dir.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2010-05-18 20:01:24 -0700
committerGlenn Morris <rgm@gnu.org>2010-05-18 20:01:24 -0700
commitd24e10b1b2e691ea2666ebd5439e99b6e7c41f60 (patch)
tree72b101bb6dc1491e2ff16e988ce7040b0d578985 /lisp/vc-dir.el
parent38b8b32648883e07cfeaeb3ee3bbad38c623242b (diff)
* vc-dir.el (vc-dir): Don't pop-up-windows. (Bug#6204)
Diffstat (limited to 'lisp/vc-dir.el')
-rw-r--r--lisp/vc-dir.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/vc-dir.el b/lisp/vc-dir.el
index f24e627de6..5809110e5b 100644
--- a/lisp/vc-dir.el
+++ b/lisp/vc-dir.el
@@ -1169,7 +1169,8 @@ These are the commands available for use in the file status buffer:
nil t nil nil)))))
(unless backend
(setq backend (vc-responsible-backend dir)))
- (pop-to-buffer (vc-dir-prepare-status-buffer "*vc-dir*" dir backend))
+ (let (pop-up-windows) ; based on cvs-examine; bug#6204
+ (pop-to-buffer (vc-dir-prepare-status-buffer "*vc-dir*" dir backend)))
(if (derived-mode-p 'vc-dir-mode)
(vc-dir-refresh)
;; FIXME: find a better way to pass the backend to `vc-dir-mode'.