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