# HG changeset patch # User Boris Feld # Date 1498787037 -7200 # Node ID f5c16e6507e877a4ae1e5a19ca386a313d1dd0be # Parent fecea78ff2af7ae7657740aef5fc1d1d53ad5c2d configitems: register the 'profiling.showmin' config diff -r fecea78ff2af -r f5c16e6507e8 mercurial/configitems.py --- a/mercurial/configitems.py Fri Jun 30 03:43:56 2017 +0200 +++ b/mercurial/configitems.py Fri Jun 30 03:43:57 2017 +0200 @@ -341,6 +341,9 @@ coreconfigitem('profiling', 'showmax', default=0.999, ) +coreconfigitem('profiling', 'showmin', + default=dynamicdefault, +) coreconfigitem('profiling', 'sort', default='inlinetime', )