Function: vc-svn-register
vc-svn-register is a byte-compiled function defined in vc-svn.el.gz.
Signature
(vc-svn-register FILES &optional COMMENT)
Documentation
Register FILES into the SVN version control system.
The COMMENT argument is ignored This does an add but not a commit.
Passes either vc-svn-register-switches or vc-register-switches
to the SVN command.
Source Code
;; Defined in /usr/src/emacs/lisp/vc/vc-svn.el.gz
(defun vc-svn-register (files &optional _comment)
"Register FILES into the SVN version control system.
The COMMENT argument is ignored This does an add but not a commit.
Passes either `vc-svn-register-switches' or `vc-register-switches'
to the SVN command."
(apply #'vc-svn-command nil 0 files "add" (vc-switches 'SVN 'register)))