|
3 | 3 | *
|
4 | 4 | * Copyright (c) 2000-2008, PostgreSQL Global Development Group
|
5 | 5 | *
|
6 |
| - * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.129 2008/06/11 10:55:43 heikki Exp $ |
| 6 | + * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.130 2008/08/29 15:52:07 alvherre Exp $ |
7 | 7 | */
|
8 | 8 | #include"postgres_fe.h"
|
9 | 9 |
|
@@ -228,10 +228,10 @@ slashUsage(unsigned short int pager)
|
228 | 228 | fprintf(output,_(" \\pset NAME [VALUE] set table output option\n"
|
229 | 229 | " (NAME := {format|border|expanded|fieldsep|footer|null|\n"
|
230 | 230 | " numericlocale|recordsep|tuples_only|title|tableattr|pager})\n"));
|
231 |
| -fprintf(output,_(" \\t show only rows (currently %s)\n"), |
| 231 | +fprintf(output,_(" \\t[on|off] show only rows (currently %s)\n"), |
232 | 232 | ON(pset.popt.topt.tuples_only));
|
233 | 233 | fprintf(output,_(" \\T [STRING] set HTML <table> tag attributes, or unset if none\n"));
|
234 |
| -fprintf(output,_(" \\x toggle expanded output (currently %s)\n"), |
| 234 | +fprintf(output,_(" \\x[on|off] toggle expanded output (currently %s)\n"), |
235 | 235 | ON(pset.popt.topt.expanded));
|
236 | 236 | fprintf(output,"\n");
|
237 | 237 |
|
|