1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-04 06:31:13 -08:00

(vc-fetch-master-properties): Be more careful

about killing the *vc-info* buffer.
This commit is contained in:
Richard M. Stallman 1995-06-20 01:07:28 +00:00
parent f560db785e
commit 3be2a3627f

View file

@ -308,7 +308,8 @@ value of this flag.")
((string-match "Needs Merge" status)
(vc-file-setprop file 'vc-cvs-status 'needs-merge))
(t (vc-file-setprop file 'vc-cvs-status nil))))))
(kill-buffer (current-buffer))))
(if (get-buffer "*vc-info*")
(kill-buffer (get-buffer "*vc-info*")))))
;;; Functions that determine property values, by examining the
;;; working file, the master file, or log program output