Function: vc-rcs-create-repo

vc-rcs-create-repo is a byte-compiled function defined in vc-rcs.el.gz.

Signature

(vc-rcs-create-repo)

Documentation

Create a new RCS repository.

Source Code

;; Defined in /usr/src/emacs/lisp/vc/vc-rcs.el.gz
;;;
;;; State-changing functions
;;;

(defun vc-rcs-create-repo ()
  "Create a new RCS repository."
  ;; RCS is totally file-oriented, so all we have to do is make the directory.
  (make-directory "RCS"))