summaryrefslogtreecommitdiff
path: root/lisp/vc/vc-git.el
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2014-11-20 02:37:06 -0500
committerEric S. Raymond <esr@thyrsus.com>2014-11-20 02:37:06 -0500
commitf83109f0fabe13c0175ca6fe23b475bd8a9d9d99 (patch)
tree8cccade7f4f1b9226dd3e2a09a3c5c73d6b704ed /lisp/vc/vc-git.el
parentf5d77aafa9d59c4afb13d744e67a0e4daf3be31a (diff)
downloademacs-f83109f0fabe13c0175ca6fe23b475bd8a9d9d99.tar.gz
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-git.el')
-rw-r--r--lisp/vc/vc-git.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el
index 3b11a3cd635..3e45eabee0e 100644
--- a/lisp/vc/vc-git.el
+++ b/lisp/vc/vc-git.el
@@ -665,7 +665,7 @@ If toggling on, also insert its message into the buffer."
"Major mode for editing Git log messages.
It is based on `log-edit-mode', and has Git-specific extensions.")
-(defun vc-git-checkin (files _rev comment)
+(defun vc-git-checkin (files comment)
(let* ((file1 (or (car files) default-directory))
(root (vc-git-root file1))
(default-directory (expand-file-name root))