# HG changeset patch # User Boris Feld # Date 2017-06-30 01:43:57 # Node ID f5c16e6507e877a4ae1e5a19ca386a313d1dd0be # Parent fecea78ff2af7ae7657740aef5fc1d1d53ad5c2d configitems: register the 'profiling.showmin' config diff --git a/mercurial/configitems.py b/mercurial/configitems.py --- a/mercurial/configitems.py +++ b/mercurial/configitems.py @@ -341,6 +341,9 @@ coreconfigitem('profiling', 'output', coreconfigitem('profiling', 'showmax', default=0.999, ) +coreconfigitem('profiling', 'showmin', + default=dynamicdefault, +) coreconfigitem('profiling', 'sort', default='inlinetime', )