From ec757c2735fdc6e845fd9edd8da65db35d9c4836 Mon Sep 17 00:00:00 2001
From: Peter Eisentraut <peter_e@gmx.net>
Date: Mon, 13 Oct 2014 22:07:30 -0400
Subject: [PATCH] psql: Fix \? output alignment

This was inadvertently changed in commit c64e68fd.
---
 src/bin/psql/help.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c
index 3aa3c169c23..62779679d65 100644
--- a/src/bin/psql/help.c
+++ b/src/bin/psql/help.c
@@ -232,7 +232,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"));
 	fprintf(output, _("  \\t [on|off]            show only rows (currently %s)\n"),
-- 
GitLab