diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2012-06-18 02:44:00 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2012-06-18 02:47:53 +0300 |
commit | 03132da3b65eb44e65fe26267b73c101d6a2113a (patch) | |
tree | d3f56bac98e02b0f99d5a108cbe474229cd83c77 /src/bin/psql/help.c | |
parent | 3cdd19b0a66fc8845282d4012b0fcf3e94515e7b (diff) | |
download | postgresql-03132da3b65eb44e65fe26267b73c101d6a2113a.tar.gz postgresql-03132da3b65eb44e65fe26267b73c101d6a2113a.zip |
Make documentation of --help and --version options more consistent
Before, some places didn't document the short options (-? and -V),
some documented both, some documented nothing, and they were listed in
various orders. Now this is hopefully more consistent and complete.
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index 4a37c3414ca..8868d7151c0 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -94,11 +94,11 @@ usage(void) printf(_(" -l, --list list available databases, then exit\n")); printf(_(" -v, --set=, --variable=NAME=VALUE\n" " set psql variable NAME to VALUE\n")); + printf(_(" -V, --version output version information, then exit\n")); printf(_(" -X, --no-psqlrc do not read startup file (~/.psqlrc)\n")); printf(_(" -1 (\"one\"), --single-transaction\n" " execute command file as a single transaction\n")); - printf(_(" --help show this help, then exit\n")); - printf(_(" --version output version information, then exit\n")); + printf(_(" -?, --help show this help, then exit\n")); printf(_("\nInput and output options:\n")); printf(_(" -a, --echo-all echo all input from script\n")); |