From 6b7155203613ec2e8cdf551f7be2146747b876a6 Mon Sep 17 00:00:00 2001 From: Alvaro Herrera Date: Fri, 29 Aug 2008 15:52:07 +0000 Subject: [PATCH] Document that \t and \x are now settable. --- src/bin/psql/help.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index e6b64e7933..838cf900f1 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -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 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"); -- 2.39.5