Mercurial > public > mercurial-scm > hg-stable
diff mercurial/cmdutil.py @ 31095:a113284f54a0
graphlog: restore pager lost at 1cec1d863008
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Thu, 23 Feb 2017 21:20:26 +0900 |
parents | aea06029919e |
children | c22253c4c1b8 |
line wrap: on
line diff
--- a/mercurial/cmdutil.py Wed Feb 22 12:09:17 2017 +0100 +++ b/mercurial/cmdutil.py Thu Feb 23 21:20:26 2017 +0900 @@ -2235,6 +2235,8 @@ if opts.get('rev'): endrev = scmutil.revrange(repo, opts.get('rev')).max() + 1 getrenamed = templatekw.getrenamedfn(repo, endrev=endrev) + + ui.pager('log') displayer = show_changeset(ui, repo, opts, buffered=True) displaygraph(ui, repo, revdag, displayer, graphmod.asciiedges, getrenamed, filematcher)