aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2014-10-13 22:07:30 -0400
committerPeter Eisentraut <peter_e@gmx.net>2014-10-13 22:22:20 -0400
commit7ce09e614805d2965baaf33e0d6bcbbb04aa9414 (patch)
tree74e70a0c7fe1b44fd972dea4006cc1ca7b3f578f
parent8660b40d0c59e4880f246fa91e2137ddd13655d8 (diff)
downloadpostgresql-7ce09e614805d2965baaf33e0d6bcbbb04aa9414.tar.gz
postgresql-7ce09e614805d2965baaf33e0d6bcbbb04aa9414.zip
psql: Fix \? output alignment
This was inadvertently changed in commit c64e68fd.
-rw-r--r--src/bin/psql/help.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c
index 4d11952df8a..ae5fe88efd7 100644
--- a/src/bin/psql/help.c
+++ b/src/bin/psql/help.c
@@ -247,7 +247,7 @@ slashUsage(unsigned short int pager)
fprintf(output, _(" \\f [STRING] show or set field separator for unaligned query output\n"));
fprintf(output, _(" \\H toggle HTML output mode (currently %s)\n"),
ON(pset.popt.topt.format == PRINT_HTML));
- fprintf(output, _(" \\pset [NAME [VALUE]] set table output option\n"
+ fprintf(output, _(" \\pset [NAME [VALUE]] set table output option\n"
" (NAME := {format|border|expanded|fieldsep|fieldsep_zero|footer|null|\n"
" numericlocale|recordsep|recordsep_zero|tuples_only|title|tableattr|pager|\n"
" unicode_border_linestyle|unicode_column_linestyle|unicode_header_linestyle})\n"));