# HG changeset patch # User Christian Ebert # Date 1254397155 -7200 # Node ID e188e35ff4adee458919cf5a6a58a0f6f34afe85 # Parent f4b2fe9d23dfa5c2bf5d8ff5ab2edf6e6799e2e4 Uppercase short option for kwfiles --all, like hg status -A Deprecate kwfiles -a. diff -r f4b2fe9d23df -r e188e35ff4ad hgkw/keyword.py --- a/hgkw/keyword.py Thu Oct 01 13:39:15 2009 +0200 +++ b/hgkw/keyword.py Thu Oct 01 13:39:15 2009 +0200 @@ -382,7 +382,7 @@ See "hg help keyword" on how to construct patterns both for inclusion and exclusion of files. - With -a/--all and -v/--verbose the codes used to show the status + With -A/--all and -v/--verbose the codes used to show the status of files are:: K = keyword expansion candidate @@ -549,9 +549,11 @@ _('hg kwexpand [OPTION]... [FILE]...')), 'kwfiles': (files, - [('a', 'all', None, _('show keyword status flags of all files')), + [('A', 'all', None, _('show keyword status flags of all files')), ('i', 'ignore', None, _('show files excluded from expansion')), ('u', 'unknown', None, _('only show unknown (not tracked) files')), + ('a', 'all', None, + _('show keyword status flags of all files (DEPRECATED)')), ('u', 'untracked', None, _('only show untracked files (DEPRECATED)')), ] + commands.walkopts, _('hg kwfiles [OPTION]... [FILE]...')),