From: Dan Nicolaescu Date: Tue, 28 Jul 2009 08:06:36 +0000 (+0000) Subject: (vc-git-checkin): Fix typo. X-Git-Tag: emacs-pretest-23.1.90~2003 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=76e1446450645771b931de0f566270bf4fbc0264;p=emacs.git (vc-git-checkin): Fix typo. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index c1ca3073877..e295e41b026 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2009-07-28 Dan Nicolaescu + + * vc-git.el (vc-git-checkin): Fix typo. + 2009-07-28 Steve Yegge > * progmodes/js2-mode.el: New file. diff --git a/lisp/vc-git.el b/lisp/vc-git.el index 36bc653a451..523def3cfed 100644 --- a/lisp/vc-git.el +++ b/lisp/vc-git.el @@ -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)