# HG changeset patch # User Dan Nicolaescu # Date 1248768396 0 # Node ID 67098a669a4c476418f13041ea04c61b12aa393b # Parent d4d230a6489cb3bfc2599c78c46c098bd8316750 (vc-git-checkin): Fix typo. diff -r d4d230a6489c -r 67098a669a4c lisp/ChangeLog --- a/lisp/ChangeLog Tue Jul 28 05:57:35 2009 +0000 +++ b/lisp/ChangeLog Tue Jul 28 08:06:36 2009 +0000 @@ -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 -r d4d230a6489c -r 67098a669a4c lisp/vc-git.el --- a/lisp/vc-git.el Tue Jul 28 05:57:35 2009 +0000 +++ b/lisp/vc-git.el Tue Jul 28 08:06:36 2009 +0000 @@ -436,7 +436,7 @@ (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)