diff mercurial/configitems.py @ 33073:c41cbe98822c

configitems: register 'ui.interactive' That item default value is a bit special (None) so this adds a second proof that everything is still working fine.
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Fri, 23 Jun 2017 17:19:29 +0200
parents 03608e8d09e9
children c2ca511c4771
line wrap: on
line diff
--- a/mercurial/configitems.py	Sun Jun 25 14:41:12 2017 +0200
+++ b/mercurial/configitems.py	Fri Jun 23 17:19:29 2017 +0200
@@ -42,6 +42,9 @@
 coreconfigitem('ui', 'clonebundleprefers',
     default=[],
 )
+coreconfigitem('ui', 'interactive',
+    default=None,
+)
 coreconfigitem('ui', 'quiet',
     default=False,
 )