diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-10-14 01:28:42 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-10-14 01:28:42 +0000 |
commit | 2d12ee3f7147a0d3114847a659ae6a235d888166 (patch) | |
tree | 5056ab57d64435bdce571df3fa0ec1174c73ac80 /src | |
parent | c7dea3a6b7cc851744855b74b08a99ce192de84b (diff) | |
download | postgresql-2d12ee3f7147a0d3114847a659ae6a235d888166.tar.gz postgresql-2d12ee3f7147a0d3114847a659ae6a235d888166.zip |
Update psql \? for \w.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/psql.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/psql.c b/src/bin/psql/psql.c index 9361606d497..ea970e15ddb 100644 --- a/src/bin/psql/psql.c +++ b/src/bin/psql/psql.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.189 1999/09/06 23:30:53 tgl Exp $ + * $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.190 1999/10/14 01:28:42 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -301,7 +301,7 @@ slashUsage(PsqlSettings *pset) fprintf(fout, " \\t -- toggle table headings and row count (currently %s)\n", on(pset->opt.header)); fprintf(fout, " \\T [<html>] -- set html3.0 <table ...> options (currently '%s')\n", pset->opt.tableOpt ? pset->opt.tableOpt : ""); fprintf(fout, " \\x -- toggle expanded output (currently %s)\n", on(pset->opt.expanded)); - fprintf(fout, " \\w <fname> -- output current buffer to a file\n"); + fprintf(fout, " \\w <fname> -- write current buffer to a file\n"); fprintf(fout, " \\z -- list current grant/revoke permissions\n"); fprintf(fout, " \\! [<cmd>] -- shell escape or command\n"); |