comparison hgext/histedit.py @ 41699:5d63cb7d8f83

histedit: remove "chistedit" mention from interface "chisted" is internal jargon. The end user should not need to be aware that it's different from histedit.
author Jordi Gutiérrez Hermoso <jordigh@octave.org>
date Wed, 13 Feb 2019 16:02:44 -0500
parents 11c076786d56
children df1f3ba56157
comparison
equal deleted inserted replaced
41698:5fe4de392edb 41699:5d63cb7d8f83
1484 ctxs.append(histeditrule(repo[r], i)) 1484 ctxs.append(histeditrule(repo[r], i))
1485 rc = curses.wrapper(functools.partial(_chisteditmain, repo, ctxs)) 1485 rc = curses.wrapper(functools.partial(_chisteditmain, repo, ctxs))
1486 curses.echo() 1486 curses.echo()
1487 curses.endwin() 1487 curses.endwin()
1488 if rc is False: 1488 if rc is False:
1489 ui.write(_("chistedit aborted\n")) 1489 ui.write(_("histedit aborted\n"))
1490 return 0 1490 return 0
1491 if type(rc) is list: 1491 if type(rc) is list:
1492 ui.status(_("running histedit\n")) 1492 ui.status(_("running histedit\n"))
1493 rules = makecommands(rc) 1493 rules = makecommands(rc)
1494 filename = repo.vfs.join('chistedit') 1494 filename = repo.vfs.join('chistedit')