diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2014-12-01 06:23:10 -0500 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2014-12-01 06:23:10 -0500 |
commit | 2f4f92007956983e6f5cb5136a57ddaa0cd9428e (patch) | |
tree | cd6c7d910134fca65f02e58fa1cdfd72f2d2cd6c /lisp/vc/vc-cvs.el | |
parent | 7536c8645e9f82b74bd4da5d91c325ab92beb541 (diff) | |
download | emacs-2f4f92007956983e6f5cb5136a57ddaa0cd9428e.tar.gz emacs-2f4f92007956983e6f5cb5136a57ddaa0cd9428e.tar.bz2 emacs-2f4f92007956983e6f5cb5136a57ddaa0cd9428e.zip |
VC API simplification: remove ability to set initial revision.
This hasn't made any sense since RCS, and was a dumb stunt then.
* vc/vc.el and all backends: API simplification; init-revision is
gone, and vc-registered functions no longer take an initial-revision
argument.
Diffstat (limited to 'lisp/vc/vc-cvs.el')
-rw-r--r-- | lisp/vc/vc-cvs.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc-cvs.el b/lisp/vc/vc-cvs.el index 4bce79c5d5b..c938899a530 100644 --- a/lisp/vc/vc-cvs.el +++ b/lisp/vc/vc-cvs.el @@ -282,7 +282,7 @@ committed and support display of sticky tags." (autoload 'vc-switches "vc") -(defun vc-cvs-register (files &optional _rev comment) +(defun vc-cvs-register (files &optional comment) "Register FILES into the CVS version-control system. COMMENT can be used to provide an initial description of FILES. Passes either `vc-cvs-register-switches' or `vc-register-switches' |