aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlvaro Herrera <alvherre@alvh.no-ip.org>2008-08-29 15:52:07 +0000
committerAlvaro Herrera <alvherre@alvh.no-ip.org>2008-08-29 15:52:07 +0000
commitc67f037f4f764ea8b7dc2aae4350995ab59eb493 (patch)
tree540acaa9db4463f13594d62c32c15c8178f04fb6
parent7c31742a07c7fa311b0c78c598066944db1ca900 (diff)
downloadpostgresql-c67f037f4f764ea8b7dc2aae4350995ab59eb493.tar.gz
postgresql-c67f037f4f764ea8b7dc2aae4350995ab59eb493.zip
Document that \t and \x are now settable.
-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 7153fbb3400..e21fc150ddc 100644
--- a/src/bin/psql/help.c
+++ b/src/bin/psql/help.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2008, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.129 2008/06/11 10:55:43 heikki Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.130 2008/08/29 15:52:07 alvherre Exp $
*/
#include "postgres_fe.h"
@@ -228,10 +228,10 @@ slashUsage(unsigned short int pager)
fprintf(output, _(" \\pset NAME [VALUE] set table output option\n"
" (NAME := {format|border|expanded|fieldsep|footer|null|\n"
" numericlocale|recordsep|tuples_only|title|tableattr|pager})\n"));
- fprintf(output, _(" \\t show only rows (currently %s)\n"),
+ fprintf(output, _(" \\t [on|off] show only rows (currently %s)\n"),
ON(pset.popt.topt.tuples_only));
fprintf(output, _(" \\T [STRING] set HTML <table> tag attributes, or unset if none\n"));
- fprintf(output, _(" \\x toggle expanded output (currently %s)\n"),
+ fprintf(output, _(" \\x [on|off] toggle expanded output (currently %s)\n"),
ON(pset.popt.topt.expanded));
fprintf(output, "\n");