diff -r 469d949a7cb8 -r a0f437e2f5a9 hgext/histedit.py --- a/hgext/histedit.py Mon Apr 07 14:18:10 2014 -0500 +++ b/hgext/histedit.py Tue Apr 15 03:21:59 2014 +0900 @@ -398,6 +398,7 @@ _('Fix up the change and run hg histedit --continue')) message = oldctx.description() + '\n' message = ui.edit(message, ui.username()) + repo.savecommitmessage(message) commit = commitfuncfor(repo, oldctx) new = commit(text=message, user=oldctx.user(), date=oldctx.date(), extra=oldctx.extra())