aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Frost <sfrost@snowman.net>2014-09-22 21:51:25 -0400
committerStephen Frost <sfrost@snowman.net>2014-09-22 21:51:25 -0400
commita564307373089fc81a07bce49236fe2bd66de0fe (patch)
tree0b002dfdf01890909b9fac338480ebd6c37bb946
parent43bed84c320443ee7247f7ca8d609640651aab93 (diff)
downloadpostgresql-a564307373089fc81a07bce49236fe2bd66de0fe.tar.gz
postgresql-a564307373089fc81a07bce49236fe2bd66de0fe.zip
Add unicode_*_linestyle to \? variables
In a2dabf0 we added the ability to have single or double unicode linestyle for the border, column, or header. Unfortunately, the \? variables output was not updated for these new psql variables. This corrects that oversight. Patch by Pavel Stehule.
-rw-r--r--src/bin/psql/help.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c
index 6035a7771a9..4d11952df8a 100644
--- a/src/bin/psql/help.c
+++ b/src/bin/psql/help.c
@@ -305,7 +305,7 @@ helpVariables(unsigned short int pager)
{
FILE *output;
- output = PageOutput(81, pager);
+ output = PageOutput(85, pager);
fprintf(output, _("List of specially treated variables.\n"));
@@ -364,6 +364,10 @@ helpVariables(unsigned short int pager)
" column width of left aligned data type in latex format\n"));
fprintf(output, _(" title set the table title for any subsequently printed tables\n"));
fprintf(output, _(" tuples_only if set, only actual table data is shown\n"));
+ fprintf(output, _(" unicode_border_linestyle\n"));
+ fprintf(output, _(" unicode_column_linestyle\n"));
+ fprintf(output, _(" unicode_header_linestyle\n"
+ " set the style of unicode line drawing [single, double]\n"));
fprintf(output, _("\nEnvironment variables:\n"));
fprintf(output, _("Usage:\n"));