From: Peter Eisentraut Date: Tue, 14 Oct 2014 02:07:30 +0000 (-0400) Subject: psql: Fix \? output alignment X-Git-Tag: REL9_5_ALPHA1~1360 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7ce09e614805d2965baaf33e0d6bcbbb04aa9414;p=postgresql psql: Fix \? output alignment This was inadvertently changed in commit c64e68fd. --- diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index 4d11952df8..ae5fe88efd 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"));