aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2004-01-09 21:15:51 +0000
committerBruce Momjian <bruce@momjian.us>2004-01-09 21:15:51 +0000
commit5c0d0a2399f9e2c1aade5fba9d9f46d99dc03e95 (patch)
tree32e70c05371ee8a06c91d57b5be10feae93d9d4b
parentcff58dd54ebf9dfef6c8f096dcfecf078caffc13 (diff)
downloadpostgresql-5c0d0a2399f9e2c1aade5fba9d9f46d99dc03e95.tar.gz
postgresql-5c0d0a2399f9e2c1aade5fba9d9f46d99dc03e95.zip
Have psql help show \w parameter as requied.
-rw-r--r--src/bin/psql/help.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c
index 10e3ed07838..7352688e245 100644
--- a/src/bin/psql/help.c
+++ b/src/bin/psql/help.c
@@ -3,7 +3,7 @@
*
* Copyright (c) 2000-2003, PostgreSQL Global Development Group
*
- * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.84 2003/12/01 22:34:48 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.85 2004/01/09 21:15:51 momjian Exp $
*/
#include "postgres_fe.h"
#include "common.h"
@@ -195,7 +195,7 @@ slashUsage(unsigned short int pager)
fprintf(output, _(" \\p show the contents of the query buffer\n"));
fprintf(output, _(" \\r reset (clear) the query buffer\n"));
fprintf(output, _(" \\s [FILE] display history or save it to file\n"));
- fprintf(output, _(" \\w [FILE] write query buffer to file\n"));
+ fprintf(output, _(" \\w FILE write query buffer to file\n"));
fprintf(output, "\n");
fprintf(output, _("Input/Output\n"));