# HG changeset patch # User Jordi GutiƩrrez Hermoso # Date 2019-03-26 15:53:30 # Node ID 1f567a9e25bd51f6b5a188367c184beca3599ef1 # Parent 4c700c847aa2cfec5f1fa3480b07127ed03cbc19 chistedit: change in-progress message Saying "running histedit" is an artifact of when chistedit was a separate thing from histedit. I found the message a bit confusing, since wasn't I running histedit from the beginning, just from the curses interface? The whole thing is now histedit, both the curses interface and the underlying procedure to apply a plan, so let's use a message that doesn't make a distinction. diff --git a/hgext/histedit.py b/hgext/histedit.py --- a/hgext/histedit.py +++ b/hgext/histedit.py @@ -1497,7 +1497,7 @@ def _chistedit(ui, repo, *freeargs, **op ui.write(_("histedit aborted\n")) return 0 if type(rc) is list: - ui.status(_("running histedit\n")) + ui.status(_("performing changes\n")) rules = makecommands(rc) filename = repo.vfs.join('chistedit') with open(filename, 'w+') as fp: