# HG changeset patch # User Boris Feld # Date 1507625368 -7200 # Node ID a0c2a19d64e7c6738cb55991eaf91cbab1d6903b # Parent 6de7842290b21c2807a543a02b3f4d7c9f6c9066 configitems: register the 'color' section diff -r 6de7842290b2 -r a0c2a19d64e7 mercurial/configitems.py --- a/mercurial/configitems.py Sun Oct 08 20:26:25 2017 +0200 +++ b/mercurial/configitems.py Tue Oct 10 10:49:28 2017 +0200 @@ -160,6 +160,10 @@ coreconfigitem('cmdserver', 'log', default=None, ) +coreconfigitem('color', '.*', + default=None, + generic=True, +) coreconfigitem('color', 'mode', default='auto', )