Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 66b6bf6

Browse files
committed
More pgsql \? cleanup for Peter E.
1 parent 560a2c0 commit 66b6bf6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/bin/psql/help.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright 2000 by PostgreSQL Global Development Group
55
*
6-
* $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.47 2002/03/11 18:22:03 momjian Exp $
6+
* $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.48 2002/03/11 18:26:20 momjian Exp $
77
*/
88
#include "postgres_fe.h"
99
#include "help.h"
@@ -206,7 +206,7 @@ slashUsage(void)
206206
fprintf(fout, _(" \\do list operators\n"));
207207
fprintf(fout, _(" \\dT list data types\n"));
208208
fprintf(fout, _(" \\du [PATTERN] lists all configured users or only those that match pattern\n"));
209-
fprintf(fout, _(" \\e [FILE] edit the current query buffer or file with external editor\n"));
209+
fprintf(fout, _(" \\e [FILE] edit the query buffer or file with external editor\n"));
210210
fprintf(fout, _(" \\echo TEXT write text to standard output\n"));
211211
fprintf(fout, _(" \\encoding ENCODING set client encoding\n"));
212212
fprintf(fout, _(" \\f [SEPARATOR] set field separator, or unset if none\n"));
@@ -219,7 +219,7 @@ slashUsage(void)
219219
fprintf(fout, _(" \\lo_export, \\lo_import, \\lo_list, \\lo_unlink\n"
220220
" large object operations\n"));
221221
fprintf(fout, _(" \\o FILE send all query results to file or |pipe\n"));
222-
fprintf(fout, _(" \\p show the content of the current query buffer\n"));
222+
fprintf(fout, _(" \\p show the content of the query buffer\n"));
223223
fprintf(fout, _(" \\pset VAR set table output option (VAR := {format|border|expanded|\n"
224224
" fieldsep|null|recordsep|tuples_only|title|tableattr|pager})\n"));
225225
fprintf(fout, _(" \\q quit psql\n"));
@@ -233,7 +233,7 @@ slashUsage(void)
233233
fprintf(fout, _(" \\timing toggle timing of queries (currently %s)\n"),
234234
ON(pset.timing));
235235
fprintf(fout, _(" \\unset NAME unset (delete) internal variable\n"));
236-
fprintf(fout, _(" \\w FILE write current query buffer to file\n"));
236+
fprintf(fout, _(" \\w FILE write query buffer to file\n"));
237237
fprintf(fout, _(" \\x toggle expanded output (currently %s)\n"),
238238
ON(pset.popt.topt.expanded));
239239
fprintf(fout, _(" \\z list table access privileges\n"));

0 commit comments

Comments
 (0)