Function: vc-cvs-get-entries
vc-cvs-get-entries is a byte-compiled function defined in
vc-cvs.el.gz.
Signature
(vc-cvs-get-entries DIR)
Documentation
Insert the CVS/Entries file from below DIR into the current buffer.
This function ensures that the correct coding system is used for that, which may not be the one that is used for the files' contents. CVS/Entries should only be accessed through this function.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-cvs.el.gz
(defun vc-cvs-get-entries (dir)
"Insert the CVS/Entries file from below DIR into the current buffer.
This function ensures that the correct coding system is used for that,
which may not be the one that is used for the files' contents.
CVS/Entries should only be accessed through this function."
(let ((coding-system-for-read (or file-name-coding-system
default-file-name-coding-system)))
(vc-insert-file (expand-file-name "CVS/Entries" dir))))