Skip to content

Commit 7da0f5d

Browse files
committed
More psql help cleanup
1 parent 8101d0c commit 7da0f5d

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
@@ -3,7 +3,7 @@
33
*
44
* Copyright 2000 by PostgreSQL Global Development Group
55
*
6-
* $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.28 2000/05/11 01:37:54 momjian Exp $
6+
* $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.29 2000/05/11 18:41:00 momjian Exp $
77
*/
88
#include "postgres.h"
99
#include "help.h"
@@ -117,7 +117,7 @@ usage(void)
117117
puts(" -R <string> Set record separator (default: newline) (-P recordsep=)");
118118
puts(" -s Single step mode (confirm each query)");
119119
puts(" -S Single line mode (newline terminates query)");
120-
puts(" -t Don't print headings and row count (-P tuples_only)");
120+
puts(" -t Print rows only (-P tuples_only)");
121121
puts(" -T text Set HTML table tag options (width, border) (-P tableattr=)");
122122

123123
/* Display default user */
@@ -232,7 +232,7 @@ slashUsage(void)
232232
fprintf(fout, " \\r reset (clear) the query buffer\n");
233233
fprintf(fout, " \\s [file] print history or save it in [file]\n");
234234
fprintf(fout, " \\set <var> <value> set internal variable\n");
235-
fprintf(fout, " \\t don't show table headers or footers (currently %s)\n", ON(pset.popt.topt.tuples_only));
235+
fprintf(fout, " \\t show only rows (currently %s)\n", ON(pset.popt.topt.tuples_only));
236236
fprintf(fout, " \\T <tags> HTML table tags\n");
237237
fprintf(fout, " \\unset <var> unset (delete) internal variable\n");
238238
fprintf(fout, " \\w <file> write current query buffer to a <file>\n");

0 commit comments

Comments
 (0)