##// END OF EJS Templates
incoming: enable pager...
Augie Fackler -
r31038:66e1eba4 default
parent child Browse files
Show More
@@ -3210,6 +3210,7 b' def incoming(ui, repo, source="default",'
3210 3210 cmdutil.displaygraph(ui, repo, revdag, displayer,
3211 3211 graphmod.asciiedges)
3212 3212
3213 ui.pager('incoming')
3213 3214 hg._incoming(display, lambda: 1, ui, repo, source, opts, buffered=True)
3214 3215 return 0
3215 3216
@@ -3223,11 +3224,13 b' def incoming(ui, repo, source="default",'
3223 3224 if 'bookmarks' not in other.listkeys('namespaces'):
3224 3225 ui.warn(_("remote doesn't support bookmarks\n"))
3225 3226 return 0
3227 ui.pager('incoming')
3226 3228 ui.status(_('comparing with %s\n') % util.hidepassword(source))
3227 3229 return bookmarks.incoming(ui, repo, other)
3228 3230
3229 3231 repo._subtoppath = ui.expandpath(source)
3230 3232 try:
3233 ui.pager('incoming')
3231 3234 return hg.incoming(ui, repo, source, opts)
3232 3235 finally:
3233 3236 del repo._subtoppath
General Comments 0
You need to be logged in to leave comments. Login now