Submitter | Pierre-Yves David |
---|---|
Date | May 2, 2017, 3:35 p.m. |
Message ID | <10058195c925267fa10b.1493739344@nodosa.octopoid.net> |
Download | mbox | patch |
Permalink | /patch/20348/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/mercurial/ui.py b/mercurial/ui.py --- a/mercurial/ui.py +++ b/mercurial/ui.py @@ -856,8 +856,7 @@ class ui(object): if (self._disablepager or self.pageractive or command in self.configlist('pager', 'ignore') - or not self.configbool('ui', 'paginate', - self.configbool('pager', 'enable', True)) + or not self.configbool('ui', 'paginate', True) or not self.configbool('pager', 'attend-' + command, True) # TODO: if we want to allow HGPLAINEXCEPT=pager, # formatted() will need some adjustment.