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-mtn.el | |
parent | 7536c8645e9f82b74bd4da5d91c325ab92beb541 (diff) | |
download | emacs-2f4f92007956983e6f5cb5136a57ddaa0cd9428e.tar.gz |
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-mtn.el')
-rw-r--r-- | lisp/vc/vc-mtn.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc-mtn.el b/lisp/vc/vc-mtn.el index 145fdeb93d8..f12ca0fd581 100644 --- a/lisp/vc/vc-mtn.el +++ b/lisp/vc/vc-mtn.el @@ -179,7 +179,7 @@ If nil, use the value of `vc-diff-switches'. If t, use no switches." (_ ?:)) branch))) -(defun vc-mtn-register (files &optional _rev _comment) +(defun vc-mtn-register (files &optional _comment) (vc-mtn-command nil 0 files "add")) (defun vc-mtn-responsible-p (file) (vc-mtn-root file)) |