Function: vc-dir-kill-dir-status-process
vc-dir-kill-dir-status-process is an interactive and byte-compiled
function defined in vc-dir.el.gz.
Signature
(vc-dir-kill-dir-status-process)
Documentation
Kill the temporary buffer and associated process.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-dir.el.gz
(defun vc-dir-kill-dir-status-process ()
"Kill the temporary buffer and associated process."
(interactive)
(when (buffer-live-p vc-dir-process-buffer)
(let ((proc (get-buffer-process vc-dir-process-buffer)))
(when proc (delete-process proc))
(setq vc-dir-process-buffer nil)
(setq mode-line-process nil))))