+2008-04-16 Dan Nicolaescu <dann@ics.uci.edu>
+
+ * vc.el (vc-dir-kill-query): Fix thinko.
+
2008-04-16 Glenn Morris <rgm@gnu.org>
* calendar/diary-lib.el (diary-remind): Don't clobber `date' passed
(defun vc-dir-kill-query ()
;; Make sure that when the VC status buffer is killed the update
;; process running in background is also killed.
- (when (vc-dir-busy)
+ (if (vc-dir-busy)
(when (y-or-n-p "Status update process running, really kill status buffer?")
(vc-dir-kill-dir-status-process)
- t)))
+ t)
+ t))
(defun vc-dir-next-line (arg)
"Go to the next line.