diff mercurial/scmutil.py @ 33238:784f2bd96d43

configitems: register the 'format.generaldelta' config
author Pierre-Yves David <pierre-yves.david@octobus.net>
date Fri, 30 Jun 2017 03:42:23 +0200
parents 65cadeea6c22
children 4d9458e06ef0
line wrap: on
line diff
--- a/mercurial/scmutil.py	Fri Jun 30 03:42:22 2017 +0200
+++ b/mercurial/scmutil.py	Fri Jun 30 03:42:23 2017 +0200
@@ -982,14 +982,14 @@
     """helper function to know if a repo should be created as general delta
     """
     # experimental config: format.generaldelta
-    return (ui.configbool('format', 'generaldelta', False)
+    return (ui.configbool('format', 'generaldelta')
             or ui.configbool('format', 'usegeneraldelta', True))
 
 def gddeltaconfig(ui):
     """helper function to know if incoming delta should be optimised
     """
     # experimental config: format.generaldelta
-    return ui.configbool('format', 'generaldelta', False)
+    return ui.configbool('format', 'generaldelta')
 
 class simplekeyvaluefile(object):
     """A simple file with key=value lines