diff options
author | Bruce Momjian <bruce@momjian.us> | 2015-03-31 11:33:25 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2015-03-31 11:33:25 -0400 |
commit | 9d9991c84e64c0c5f568b3cdaf46bb91a1368b5a (patch) | |
tree | 3c9464838f27188885266bb0f190e4c3ea7f1e1b /src/bin/psql/help.c | |
parent | 0cf16b44cb749cac2ff9dcbbe92bfb94f72bb0d0 (diff) | |
download | postgresql-9d9991c84e64c0c5f568b3cdaf46bb91a1368b5a.tar.gz |
psql: add asciidoc output format
Patch by Szymon Guz, adjustments by me
Testing by Michael Paquier, Pavel Stehule
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index 2da444b6d5..f58f5e52f3 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -351,7 +351,7 @@ helpVariables(unsigned short int pager) fprintf(output, _(" expanded (or x) toggle expanded output\n")); fprintf(output, _(" fieldsep field separator for unaligned output (default '|')\n")); fprintf(output, _(" fieldsep_zero set field separator in unaligned mode to zero\n")); - fprintf(output, _(" format set output format [unaligned, aligned, wrapped, html, latex, ..]\n")); + fprintf(output, _(" format set output format [unaligned, aligned, wrapped, html, asciidoc, ...]\n")); fprintf(output, _(" footer enable or disable display of the table footer [on, off]\n")); fprintf(output, _(" linestyle set the border line drawing style [ascii, old-ascii, unicode]\n")); fprintf(output, _(" null set the string to be printed in place of a null value\n")); |