3
3
*
4
4
* Copyright 2000 by PostgreSQL Global Development Group
5
5
*
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 $
7
7
*/
8
8
#include "postgres_fe.h"
9
9
#include "help.h"
@@ -206,7 +206,7 @@ slashUsage(void)
206
206
fprintf (fout , _ (" \\do list operators\n" ));
207
207
fprintf (fout , _ (" \\dT list data types\n" ));
208
208
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" ));
210
210
fprintf (fout , _ (" \\echo TEXT write text to standard output\n" ));
211
211
fprintf (fout , _ (" \\encoding ENCODING set client encoding\n" ));
212
212
fprintf (fout , _ (" \\f [SEPARATOR] set field separator, or unset if none\n" ));
@@ -219,7 +219,7 @@ slashUsage(void)
219
219
fprintf (fout , _ (" \\lo_export, \\lo_import, \\lo_list, \\lo_unlink\n"
220
220
" large object operations\n" ));
221
221
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" ));
223
223
fprintf (fout , _ (" \\pset VAR set table output option (VAR := {format|border|expanded|\n"
224
224
" fieldsep|null|recordsep|tuples_only|title|tableattr|pager})\n" ));
225
225
fprintf (fout , _ (" \\q quit psql\n" ));
@@ -233,7 +233,7 @@ slashUsage(void)
233
233
fprintf (fout , _ (" \\timing toggle timing of queries (currently %s)\n" ),
234
234
ON (pset .timing ));
235
235
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" ));
237
237
fprintf (fout , _ (" \\x toggle expanded output (currently %s)\n" ),
238
238
ON (pset .popt .topt .expanded ));
239
239
fprintf (fout , _ (" \\z list table access privileges\n" ));
0 commit comments