Stephen Turnbull writes:
VC has a habit of changing windows, IIRC. Mike changed the connection
Indeed.
I also have the following in my (antique) tame-vc-hacks:
; hooks so that window configuration is restored after checkin
(defun vc-checkin-save-window ()
(make-local-variable 'vc-saved-winconf)
(setq vc-saved-winconf (current-window-configuration)))
(add-hook 'vc-before-checkin-hook 'vc-checkin-save-window)
(defun vc-checkin-restore-window ()
(if vc-saved-winconf (set-window-configuration vc-saved-winconf)))
(add-hook 'vc-checkin-hook 'vc-checkin-restore-window)
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://lists.xemacs.org/mailman/listinfo/xemacs-beta