[PATCH 10 of 19 pager] incoming: enable pager

Augie Fackler raf at durin42.com
Sun Feb 19 18:13:01 EST 2017


# HG changeset patch
# User Augie Fackler <augie at google.com>
# Date 1486440228 18000
#      Mon Feb 06 23:03:48 2017 -0500
# Node ID b6f05836ba20bb8b25469a30aeed1b3506392bbf
# Parent  f6f080904a6ecac993f137b92d50bf4991f8d07c
incoming: enable pager

The design of incoming means we have to activate the pager in several
places, depending on which codepath gets chosen.

diff --git a/mercurial/commands.py b/mercurial/commands.py
--- a/mercurial/commands.py
+++ b/mercurial/commands.py
@@ -3210,6 +3210,7 @@ def incoming(ui, repo, source="default",
             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 @@ def incoming(ui, repo, source="default",
         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


More information about the Mercurial-devel mailing list