1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00

(vc-git-checkin): Fix typo.

This commit is contained in:
Dan Nicolaescu 2009-07-28 08:06:36 +00:00
parent af0770126d
commit 76e1446450
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2009-07-28 Dan Nicolaescu <dann@ics.uci.edu>
* vc-git.el (vc-git-checkin): Fix typo.
2009-07-28 Steve Yegge <steve.yegge@gmail.com>>
* progmodes/js2-mode.el: New file.

View File

@ -436,7 +436,7 @@ If nil, use the value of `vc-diff-switches'. If t, use no switches."
(defun vc-git-checkin (files rev comment)
(let ((coding-system-for-write git-commits-coding-system))
(vc-git-command nil 0 files "commit"
(if vc-git-add-signoff "-s" "") "-m" comment "--only" "--")))
(if vc-git-add-signoff "-s") "-m" comment "--only" "--")))
(defun vc-git-find-revision (file rev buffer)
(let ((coding-system-for-read 'binary)