changeset 32986 | 2529e2ae9f4c |
parent 32984 | 6d983e8af49c |
child 32990 | 1d5d7e2b7ab5 |
--- a/mercurial/configitems.py Sat Jun 17 12:15:28 2017 +0200 +++ b/mercurial/configitems.py Sat Jun 17 12:33:59 2017 +0200 @@ -33,3 +33,9 @@ msg = "duplicated config item registration for '%s.%s'" raise error.ProgrammingError(msg % (item.section, item.name)) section[item.name] = item + +# Registering actual config items + +coreconfigitem('ui', 'quiet', + default=False, +)