# HG changeset patch # User Thomas Arendsen Hein # Date 1199301730 -3600 # Node ID 28d9f8cd02f2d1879ef36c31df2ed116c8039d51 # Parent 7eb1146b72ec22e3c8da091544401550fac0b946 Move aliases section in help below synopsis (issue362) This should avoid confusion why e.g. "hg help co" shows help for "hg update" instead. diff -r 7eb1146b72ec -r 28d9f8cd02f2 mercurial/commands.py --- a/mercurial/commands.py Tue Jan 01 23:12:48 2008 +0100 +++ b/mercurial/commands.py Wed Jan 02 20:22:10 2008 +0100 @@ -1214,7 +1214,11 @@ ui.write('\n') aliases, i = cmdutil.findcmd(ui, name, table) # synopsis - ui.write("%s\n\n" % i[2]) + ui.write("%s\n" % i[2]) + + # aliases + if not ui.quiet and len(aliases) > 1: + ui.write(_("\naliases: %s\n") % ', '.join(aliases[1:])) # description doc = i[0].__doc__ @@ -1222,13 +1226,9 @@ doc = _("(No help text available)") if ui.quiet: doc = doc.splitlines(0)[0] - ui.write("%s\n" % doc.rstrip()) + ui.write("\n%s\n" % doc.rstrip()) if not ui.quiet: - # aliases - if len(aliases) > 1: - ui.write(_("\naliases: %s\n") % ', '.join(aliases[1:])) - # options if i[1]: option_lists.append((_("options:\n"), i[1])) diff -r 7eb1146b72ec -r 28d9f8cd02f2 tests/test-help.out --- a/tests/test-help.out Tue Jan 01 23:12:48 2008 +0100 +++ b/tests/test-help.out Wed Jan 02 20:22:10 2008 +0100 @@ -211,6 +211,8 @@ use "hg -v help diff" to show global options hg status [OPTION]... [FILE]... +aliases: st + show changed files in the working directory Show status of files in the repository. If names are given, only @@ -235,8 +237,6 @@ I = ignored (not shown by default) = the previous added file was copied from here -aliases: st - options: -A --all show status of all files