mirror of
https://github.com/postgres/postgres.git
synced 2026-06-08 16:26:30 -04:00
Fix psql's --help=commands output line count.
Evidently somebody neglected to update this sometime in the v10 cycle. Patching REL_10_STABLE only; this value is about to be obsolete in HEAD anyway. Noted while examining \gdesc patch.
This commit is contained in:
parent
1861b20cd6
commit
3fbf09563f
1 changed files with 1 additions and 1 deletions
|
|
@ -167,7 +167,7 @@ slashUsage(unsigned short int pager)
|
|||
* Use "psql --help=commands | wc" to count correctly. It's okay to count
|
||||
* the USE_READLINE line even in builds without that.
|
||||
*/
|
||||
output = PageOutput(122, pager ? &(pset.popt.topt) : NULL);
|
||||
output = PageOutput(124, pager ? &(pset.popt.topt) : NULL);
|
||||
|
||||
fprintf(output, _("General\n"));
|
||||
fprintf(output, _(" \\copyright show PostgreSQL usage and distribution terms\n"));
|
||||
|
|
|
|||
Loading…
Reference in a new issue