8000 Update line count totals for psql help displays. · patchsoft/postgres@c4f1540 · GitHub
[go: up one dir, main page]

Skip to content

Commit c4f1540

Browse files
committed
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.
1 parent a8fc195 commit c4f1540

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/bin/psql/help.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ usage(unsigned short int pager)
6565
}
6666
}
6767

68-
output = PageOutput(59, pager ? &(pset.popt.topt) : NULL);
68+
output = PageOutput(61, pager ? &(pset.popt.topt) : NULL);
6969

7070
fprintf(output, _("psql is the PostgreSQL interactive terminal.\n\n"));
7171
fprintf(output, _("Usage:\n"));
@@ -159,7 +159,7 @@ slashUsage(unsigned short int pager)
159159

160160
currdb = PQdb(pset.db);
161161

162-
output = PageOutput(103, pager ? &(pset.popt.topt) : NULL);
162+
output = PageOutput(107, pager ? &(pset.popt.topt) : NULL);
163163

164164
/* if you add/remove a line here, change the row count above */
165165

@@ -306,7 +306,7 @@ helpVariables(unsigned short int pager)
306306
{
307307
FILE *output;
308308

309-
output = PageOutput(85, pager ? &(pset.popt.topt) : NULL);
309+
output = PageOutput(87, pager ? &(pset.popt.topt) : NULL);
310310

311311
fprintf(output, _("List of specially treated variables\n\n"));
312312

0 commit comments

Comments
 (0)
0