# HG changeset patch # User Mateusz Kwapich # Date 1449087541 28800 # Node ID 787d8cc3f04e6b3cc719a134ae280e6c09edbf9d # Parent 6b77e749af4a0b8b99fe888a662b3a5400d9eede histedit: remove makedesc It's a dead code now. diff -r 6b77e749af4a -r 787d8cc3f04e hgext/histedit.py --- a/hgext/histedit.py Wed Dec 02 12:19:01 2015 -0800 +++ b/hgext/histedit.py Wed Dec 02 12:19:01 2015 -0800 @@ -1145,23 +1145,6 @@ hint=_('see "hg help phases" for details')) return [c.node() for c in ctxs] -def makedesc(repo, action, rev): - """build a initial action line for a ctx - - line are in the form: - - - """ - ctx = repo[rev] - summary = '' - if ctx.description(): - summary = ctx.description().splitlines()[0] - line = '%s %s %d %s' % (action, ctx, ctx.rev(), summary) - # trim to 80 columns so it's not stupidly wide in my editor - maxlen = repo.ui.configint('histedit', 'linelen', default=80) - maxlen = max(maxlen, 22) # avoid truncating hash - return util.ellipsis(line, maxlen) - def ruleeditor(repo, ui, actions, editcomment=""): """open an editor to edit rules