From a040eb8038337c6dda0d003d47458f3362887d85 Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Sun, 31 Aug 2008 21:49:14 +0300 Subject: [PATCH] Bugfix. * magit.el (magit-revert-item): Use magit-log-edit-append instead of the removed magit-append-to-log-edit. --- magit.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magit.el b/magit.el index 55d63248..8dcae17a 100644 --- a/magit.el +++ b/magit.el @@ -1225,7 +1225,7 @@ Please see the manual for a complete description of Magit. (interactive) (magit-item-case (item info "revert") ((commit) - (magit-append-to-log-edit + (magit-log-edit-append (magit-format-commit info "Reverting \"%s\"")) (magit-run-shell "git diff %s^ %s | git apply --reverse -" info info))))