diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-07-08 02:55:50 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-07-08 02:55:50 +0000 |
commit | 4e8b7ae5c1690718c8b5d7b67ed17d367d89f690 (patch) | |
tree | 0368827b629e82084ad051d8ed9f16bf5a349e3e /lisp/vc.el | |
parent | e4dfd4f70a707e24e8553873b105eabfe62fe6d5 (diff) | |
download | emacs-4e8b7ae5c1690718c8b5d7b67ed17d367d89f690.tar.gz |
(vc-finish-logentry): Only delete windows in the selected frame
displaying the *VC-log* buffer, in case another frame is dedicated to
it (which will then be deleted via kill-buffer).
Diffstat (limited to 'lisp/vc.el')
-rw-r--r-- | lisp/vc.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index cda0544dc4a..f54a7b325de 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -5,7 +5,7 @@ ;; Author: Eric S. Raymond <esr@snark.thyrsus.com> ;; Maintainer: Andre Spiegel <spiegel@inf.fu-berlin.de> -;; $Id: vc.el,v 1.232 1998/06/16 16:38:47 rms Exp eliz $ +;; $Id: vc.el,v 1.233 1998/06/21 14:29:07 eliz Exp rms $ ;; This file is part of GNU Emacs. @@ -1240,7 +1240,7 @@ May be useful as a `vc-checkin-hook' to update change logs automatically." ;; we don't zap the *VC-log* buffer and the typing therein). (let ((logbuf (get-buffer "*VC-log*"))) (cond (logbuf - (delete-windows-on logbuf) + (delete-windows-on logbuf (selected-frame)) (kill-buffer logbuf)))) ;; Now make sure we see the expanded headers (if buffer-file-name |