# HG changeset patch # User Augie Fackler # Date 1486440228 18000 # Node ID 66e1eba45f0225c6073e5682b37e49aed439dc8a # Parent a602785d86cd53b2366cfb0acc5a67c953513dd0 incoming: enable pager The design of incoming means we have to activate the pager in several places, depending on which codepath gets chosen. diff -r a602785d86cd -r 66e1eba45f02 mercurial/commands.py --- a/mercurial/commands.py Mon Feb 06 23:09:21 2017 -0500 +++ b/mercurial/commands.py Mon Feb 06 23:03:48 2017 -0500 @@ -3210,6 +3210,7 @@ cmdutil.displaygraph(ui, repo, revdag, displayer, graphmod.asciiedges) + ui.pager('incoming') hg._incoming(display, lambda: 1, ui, repo, source, opts, buffered=True) return 0 @@ -3223,11 +3224,13 @@ if 'bookmarks' not in other.listkeys('namespaces'): ui.warn(_("remote doesn't support bookmarks\n")) return 0 + ui.pager('incoming') ui.status(_('comparing with %s\n') % util.hidepassword(source)) return bookmarks.incoming(ui, repo, other) repo._subtoppath = ui.expandpath(source) try: + ui.pager('incoming') return hg.incoming(ui, repo, source, opts) finally: del repo._subtoppath