Function: cvs-mode-kill-buffers
cvs-mode-kill-buffers is an interactive and byte-compiled function
defined in pcvs.el.gz.
Signature
(cvs-mode-kill-buffers)
Documentation
Kill all the "temporary" buffers created by the *cvs* buffer.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/pcvs.el.gz
(defun cvs-mode-kill-buffers ()
"Kill all the \"temporary\" buffers created by the *cvs* buffer."
(interactive)
(dolist (buf cvs-temp-buffers) (ignore-errors (kill-buffer buf))))