]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-git-checkin): Fix typo.
authorDan Nicolaescu <dann@ics.uci.edu>
Tue, 28 Jul 2009 08:06:36 +0000 (08:06 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Tue, 28 Jul 2009 08:06:36 +0000 (08:06 +0000)
lisp/ChangeLog
lisp/vc-git.el

index c1ca3073877c97387b7c6d1352d7d5baaff064b1..e295e41b0267020e5e8e5630f5052d50418b43b6 100644 (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.
index 36bc653a451e69e83f582b1250cc5985a0c8afd6..523def3cfed5c6325e5b204b23629633366461e6 100644 (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)