# HG changeset patch # User Boris Feld # Date 1508159570 -7200 # 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 -r 0c06875e7755 -r 1c9128b735cd mercurial/configitems.py --- a/mercurial/configitems.py Mon Oct 16 15:35:08 2017 +0200 +++ b/mercurial/configitems.py Mon Oct 16 15:12:50 2017 +0200 @@ -104,34 +104,34 @@ 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,