# HG changeset patch # User Pierre-Yves David # Date 1493738293 -7200 # Node ID 2384a6546927fab9805e45bb4300e21a49de579f # Parent f06d23af6cdff0ec1a56773f2d6180ae936af42e pager: drop the support for 'pager.enable=' This option was never released except for a release candidate. Dropping compatibility with this option will free the 'pager.enable' config option for other usage in the future. diff --git a/mercurial/ui.py b/mercurial/ui.py --- a/mercurial/ui.py +++ b/mercurial/ui.py @@ -856,8 +856,7 @@ 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.