2287
2287
option_registry = registry.Registry()
2290
# Registered options in lexicographical order
2292
option_registry.register(
2293
'dirstate.fdatasync', Option('dirstate.fdatasync', default=True),
2294
help='Flush dirstate changes onto physical disk?')
2295
option_registry.register(
2296
'default_format', Option('default_format', default='2a'),
2297
help='Format used when creating branches.')
2290
2298
option_registry.register(
2291
2299
'editor', Option('editor'),
2292
2300
help='The command called to launch an editor to enter a message.')
2294
option_registry.register(
2295
'dirstate.fdatasync', Option('dirstate.fdatasync', default=True),
2296
help='Flush dirstate changes onto physical disk?')
2301
option_registry.register(
2302
'language', Option('language'),
2303
help='Language to translate messages into.')
2304
option_registry.register(
2305
'output_encoding', Option('output_encoding'),
2306
help='Unicode encoding for output (terminal encoding if not specified).')
2298
2307
option_registry.register(
2299
2308
'repository.fdatasync',
2300
2309
Option('repository.fdatasync', default=True),