aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2003-10-02 06:39:31 +0000
committerPeter Eisentraut <peter_e@gmx.net>2003-10-02 06:39:31 +0000
commitd938e8b0f4aea7bbc83e080afd68f2b00f2d7608 (patch)
tree6fd7bbdff75aa2d8e3a0b5a6867641d469edf0f7 /src
parent14528ffe6b6bdd775c5ba486c3c06861dbc2307f (diff)
downloadpostgresql-d938e8b0f4aea7bbc83e080afd68f2b00f2d7608.tar.gz
postgresql-d938e8b0f4aea7bbc83e080afd68f2b00f2d7608.zip
Add documentation about \pset footer to \?.
from Patrick Welche
Diffstat (limited to 'src')
-rw-r--r--src/bin/psql/help.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c
index fd13e199dcb..7a0f9c883e1 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
*
- * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.80 2003/09/14 22:37:13 petere Exp $
+ * $Header: /cvsroot/pgsql/src/bin/psql/help.c,v 1.81 2003/10/02 06:39:31 petere Exp $
*/
#include "postgres_fe.h"
#include "common.h"
@@ -234,8 +234,8 @@ slashUsage(unsigned short int pager)
ON(pset.popt.topt.format == PRINT_HTML));
fprintf(output, _(" \\pset NAME [VALUE]\n"
" set table output option\n"
- " (NAME := {format|border|expanded|fieldsep|null|recordsep|\n"
- " tuples_only|title|tableattr|pager})\n"));
+ " (NAME := {format|border|expanded|fieldsep|footer|null|\n"
+ " recordsep|tuples_only|title|tableattr|pager})\n"));
fprintf(output, _(" \\t show only rows (currently %s)\n"),
ON(pset.popt.topt.tuples_only));
fprintf(output, _(" \\T [STRING] set HTML <table> tag attributes, or unset if none\n"));