From: Bruce Momjian Date: Wed, 16 Apr 2014 22:13:15 +0000 (-0400) Subject: psql: update --help output for unaligned mode params X-Git-Tag: REL9_4_BETA1~158 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8c349ba5c04c3b5fdceb13c35996e7ff4b69585f;p=postgresql psql: update --help output for unaligned mode params Previously it wasn't clear from --help that -F, -R, -z, -0 only controlled psql unaligned output. Initial patch from Jov , adjustments by me --- diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index baa94175ea..3aa3c169c2 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -99,19 +99,19 @@ usage(void) printf(_("\nOutput format options:\n")); printf(_(" -A, --no-align unaligned table output mode\n")); printf(_(" -F, --field-separator=STRING\n" - " set field separator (default: \"%s\")\n"), + " field separator for unaligned output (default: \"%s\")\n"), DEFAULT_FIELD_SEP); printf(_(" -H, --html HTML table output mode\n")); printf(_(" -P, --pset=VAR[=ARG] set printing option VAR to ARG (see \\pset command)\n")); printf(_(" -R, --record-separator=STRING\n" - " set record separator (default: newline)\n")); + " record separator for unaligned output (default: newline)\n")); printf(_(" -t, --tuples-only print rows only\n")); printf(_(" -T, --table-attr=TEXT set HTML table tag attributes (e.g., width, border)\n")); printf(_(" -x, --expanded turn on expanded table output\n")); printf(_(" -z, --field-separator-zero\n" - " set field separator to zero byte\n")); + " set field separator for unaligned output to zero byte\n")); printf(_(" -0, --record-separator-zero\n" - " set record separator to zero byte\n")); + " set record separator for unaligned output to zero byte\n")); printf(_("\nConnection options:\n")); /* Display default host */