diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2014-11-20 02:37:06 -0500 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2014-11-20 02:37:06 -0500 |
commit | f83109f0fabe13c0175ca6fe23b475bd8a9d9d99 (patch) | |
tree | 8cccade7f4f1b9226dd3e2a09a3c5c73d6b704ed /lisp/vc/vc-dav.el | |
parent | f5d77aafa9d59c4afb13d744e67a0e4daf3be31a (diff) | |
download | emacs-f83109f0fabe13c0175ca6fe23b475bd8a9d9d99.tar.gz emacs-f83109f0fabe13c0175ca6fe23b475bd8a9d9d99.tar.bz2 emacs-f83109f0fabe13c0175ca6fe23b475bd8a9d9d99.zip |
Remove never-used rev argument from VC's backend checkin methods.
Alters vc/vc-arch.el, vc/vc-bzr.el, vc/vc-cvs.el, vc/vc-dav.el,
vc/vc-git.el, vc/vc-hg.el, vc/vc-mtn.el, vc/vc-rcs.el,
vc/vc-sccs.el, vc/vc-svn.el, vc/vc.el.
Only the RCS, SCCS, and CVS back ends tried to do anything with it,
and that code was never exercised. Chiseling away the cruft of
decades...
Diffstat (limited to 'lisp/vc/vc-dav.el')
-rw-r--r-- | lisp/vc/vc-dav.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/vc/vc-dav.el b/lisp/vc/vc-dav.el index 9b67d74c779..77979d696d3 100644 --- a/lisp/vc/vc-dav.el +++ b/lisp/vc/vc-dav.el @@ -82,10 +82,8 @@ See `vc-checkout-model' for a list of possible values." ;; Do we need to do anything here? FIXME? ) -(defun vc-dav-checkin (url rev comment) - "Commit changes in URL to WebDAV. -If REV is non-nil, that should become the new revision number. -COMMENT is used as a check-in comment." +(defun vc-dav-checkin (url comment) + "Commit changes in URL to WebDAV. COMMENT is used as a check-in comment." ;; This should PUT the resource and release any locks that we hold. ) |