1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-25 07:28:20 +00:00

vc-bzr.el (vc-bzr-checkin): Undo spurious `async' arg change.

This commit is contained in:
Stefan Monnier 2010-04-20 22:10:50 -04:00
parent e97a42c15b
commit a1d830c700

View File

@ -457,7 +457,7 @@ or a superior directory.")
"Check FILE in to bzr with log message COMMENT.
REV non-nil gets an error."
(if rev (error "Can't check in a specific revision with bzr"))
(apply 'vc-bzr-command "commit" nil 'async
(apply 'vc-bzr-command "commit" nil 0
files (cons "-m" (log-edit-extract-headers '(("Author" . "--author")
("Fixes" . "--fixes"))
comment))))