# HG changeset patch # User Boris Feld # Date 1507487185 -7200 # Node ID 6de7842290b21c2807a543a02b3f4d7c9f6c9066 # Parent 181d913b17e62f948f9b5436d6d9675008421caf configitems: register the 'alias' section diff -r 181d913b17e6 -r 6de7842290b2 mercurial/configitems.py --- a/mercurial/configitems.py Tue Oct 10 10:49:15 2017 +0200 +++ b/mercurial/configitems.py Sun Oct 08 20:26:25 2017 +0200 @@ -99,6 +99,10 @@ coreconfigitem = getitemregister(coreitems) +coreconfigitem('alias', '.*', + default=None, + generic=True, +) coreconfigitem('annotate', 'nodates', default=None, )