diff options
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index 53656294da4..3e3cab49418 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -348,9 +348,9 @@ helpVariables(unsigned short int pager) " (default: 0=unlimited)\n")); fprintf(output, _(" HISTCONTROL controls command history [ignorespace, ignoredups, ignoreboth]\n")); fprintf(output, _(" HISTFILE file name used to store the command history\n")); - fprintf(output, _(" HISTSIZE the number of commands to store in the command history\n")); + fprintf(output, _(" HISTSIZE max number of commands to store in the command history\n")); fprintf(output, _(" HOST the currently connected database server host\n")); - fprintf(output, _(" IGNOREEOF if unset, sending an EOF to interactive session terminates application\n")); + fprintf(output, _(" IGNOREEOF number of EOFs needed to terminate an interactive session\n")); fprintf(output, _(" LASTOID value of the last affected OID\n")); fprintf(output, _(" ON_ERROR_ROLLBACK if set, an error doesn't stop a transaction (uses implicit savepoints)\n")); fprintf(output, _(" ON_ERROR_STOP stop batch execution after error\n")); |