# HG changeset patch # User Boris Feld # Date 2017-10-16 13:12:50 # Node ID 1c9128b735cd9bb3779b9d9558c600f407c62920 # Parent 0c06875e7755fdf9f944a2307a63f4a846d99f85 configitems: fixup default value of annotate config option It turned out that configbool is used for most of them so the registered default value was wrong. diff --git a/mercurial/configitems.py b/mercurial/configitems.py --- a/mercurial/configitems.py +++ b/mercurial/configitems.py @@ -104,34 +104,34 @@ coreconfigitem('alias', '.*', generic=True, ) coreconfigitem('annotate', 'nodates', - default=None, + default=False, ) coreconfigitem('annotate', 'showfunc', - default=None, + default=False, ) coreconfigitem('annotate', 'unified', default=None, ) coreconfigitem('annotate', 'git', - default=None, + default=False, ) coreconfigitem('annotate', 'ignorews', - default=None, + default=False, ) coreconfigitem('annotate', 'ignorewsamount', - default=None, + default=False, ) coreconfigitem('annotate', 'ignoreblanklines', - default=None, + default=False, ) coreconfigitem('annotate', 'ignorewseol', - default=None, + default=False, ) coreconfigitem('annotate', 'nobinary', - default=None, + default=False, ) coreconfigitem('annotate', 'noprefix', - default=None, + default=False, ) coreconfigitem('auth', 'cookiefile', default=None,