aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2016-08-18 16:04:35 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2016-08-18 16:04:35 -0400
commitc4f1540d3a296d0328e21b32cdc612f611353b7c (patch)
tree12c8971b3f53fb5468ab1f9ffd8e19d814b9a2e4
parenta8fc1950520985f321d4d07da9b1c633c0addd97 (diff)
downloadpostgresql-c4f1540d3a296d0328e21b32cdc612f611353b7c.tar.gz
postgresql-c4f1540d3a296d0328e21b32cdc612f611353b7c.zip
Update line count totals for psql help displays.
As usual, we've been pretty awful about maintaining these counts. They're not all that critical, perhaps, but let's get them right at release time. Also fix 9.5, which I notice is just as bad. It's probably wrong further back, but the lack of --help=foo options before 9.5 makes it too painful to count.
-rw-r--r--src/bin/psql/help.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c
index 355af433597..3f97a810811 100644
--- a/src/bin/psql/help.c
+++ b/src/bin/psql/help.c
@@ -65,7 +65,7 @@ usage(unsigned short int pager)
}
}
- output = PageOutput(59, pager ? &(pset.popt.topt) : NULL);
+ output = PageOutput(61, pager ? &(pset.popt.topt) : NULL);
fprintf(output, _("psql is the PostgreSQL interactive terminal.\n\n"));
fprintf(output, _("Usage:\n"));
@@ -159,7 +159,7 @@ slashUsage(unsigned short int pager)
currdb = PQdb(pset.db);
- output = PageOutput(103, pager ? &(pset.popt.topt) : NULL);
+ output = PageOutput(107, pager ? &(pset.popt.topt) : NULL);
/* if you add/remove a line here, change the row count above */
@@ -306,7 +306,7 @@ helpVariables(unsigned short int pager)
{
FILE *output;
- output = PageOutput(85, pager ? &(pset.popt.topt) : NULL);
+ output = PageOutput(87, pager ? &(pset.popt.topt) : NULL);
fprintf(output, _("List of specially treated variables\n\n"));