diff lisp/vc-bzr.el @ 108913:c05344a913c8

Improve support for special markup in the VC commit message. * lisp/vc-mtn.el (vc-mtn-checkin): Add support for Author: and Date: markup. * lisp/vc-hg.el (vc-hg-checkin): Add support for Date:. * lisp/vc-git.el (vc-git-checkin): * lisp/vc-bzr.el (vc-bzr-checkin): Likewise.
author Dan Nicolaescu <dann@ics.uci.edu>
date Tue, 08 Jun 2010 22:24:01 -0700
parents bace4ba4c137
children
line wrap: on
line diff
--- a/lisp/vc-bzr.el	Tue Jun 08 22:58:26 2010 -0400
+++ b/lisp/vc-bzr.el	Tue Jun 08 22:24:01 2010 -0700
@@ -459,6 +459,7 @@
   (if rev (error "Can't check in a specific revision with bzr"))
   (apply 'vc-bzr-command "commit" nil 0
          files (cons "-m" (log-edit-extract-headers '(("Author" . "--author")
+						      ("Date" . "--commit-time")
                                                       ("Fixes" . "--fixes"))
                                                     comment))))