From 75e67bea8f917d82f73f73a7c059bbd246a273de Mon Sep 17 00:00:00 2001 From: Pierre-Yves David Date: Fri, 30 Jun 2017 03:42:24 +0200 Subject: [PATCH] configitems: register the 'format.manifestcachesize' config --- mercurial/configitems.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mercurial/configitems.py b/mercurial/configitems.py index c078cdb3ab..8eed24969a 100644 --- a/mercurial/configitems.py +++ b/mercurial/configitems.py @@ -116,6 +116,9 @@ coreconfigitem('format', 'dotencode', coreconfigitem('format', 'generaldelta', default=False, ) +coreconfigitem('format', 'manifestcachesize', + default=None, +) coreconfigitem('hostsecurity', 'ciphers', default=None, )