Update psql \? for \w.
authorBruce Momjian
Thu, 14 Oct 1999 01:28:42 +0000 (01:28 +0000)
committerBruce Momjian
Thu, 14 Oct 1999 01:28:42 +0000 (01:28 +0000)
doc/src/sgml/ref/psql-ref.sgml
src/bin/psql/psql.c

index 82f6db2134d487d4af1bbd62017535372f49f48e..ec837b43b925620109a04d39f1fc8d37b2b85b71 100644 (file)
@@ -1,5 +1,5 @@
 
 
@@ -943,7 +943,7 @@ testdb=>
      \w filename
      
       
-       Outputs the current query buffer to the file
+       Write the current query buffer to the file
        filename.
       
      
index 9361606d497daf536fc180b3666b739d10abe122..ea970e15ddbc03f7f6c815bdaf586245a1004775 100644 (file)
@@ -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 []  -- set html3.0  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    -- output current buffer to a file\n");
+   fprintf(fout, " \\w    -- write current buffer to a file\n");
    fprintf(fout, " \\z           -- list current grant/revoke permissions\n");
    fprintf(fout, " \\! []   -- shell escape or command\n");