Function: cvs-mode-insert
cvs-mode-insert is an interactive and byte-compiled function defined
in pcvs.el.gz.
Signature
(cvs-mode-insert)
Documentation
Insert an entry for a specific file into the current listing.
This is typically used if the file is up-to-date (or has been added outside of PCL-CVS) and one wants to do some operation on it.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/vc/pcvs.el.gz
;;;;
;;;; CVS Mode commands
;;;;
(defun-cvs-mode (cvs-mode-insert . NOARGS) (file)
"Insert an entry for a specific file into the current listing.
This is typically used if the file is up-to-date (or has been added
outside of PCL-CVS) and one wants to do some operation on it."
(interactive
(list (read-file-name
"File to insert: "
;; Can't use ignore-errors here because interactive
;; specs aren't byte-compiled.
(condition-case nil
(file-name-as-directory
(expand-file-name
(cvs-fileinfo->dir
(cvs-mode-marked nil nil :read-only t :one t :noquery t))))
(error nil)))))
(cvs-insert-file file))