summaryrefslogtreecommitdiff
path: root/src/bin/psql/help.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2013-03-03 22:17:08 -0500
committerMagnus Hagander <magnus@hagander.net>2013-03-04 15:17:40 +0000
commit0ea1f6e98fc84f1c5f66cc6355f6e20582295e81 (patch)
tree6add782d94206a65350ff6ecd97579dfc64baedf /src/bin/psql/help.c
parent54d6706ded5c612a7f9b16eb6ddb08f44e24bb70 (diff)
downloadpostgresql-0ea1f6e98fc84f1c5f66cc6355f6e20582295e81.tar.gz
psql: Let \l accept a pattern
reviewed by Satoshi Nagayasu
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r--src/bin/psql/help.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c
index 819a20f18d..ccb307b791 100644
--- a/src/bin/psql/help.c
+++ b/src/bin/psql/help.c
@@ -235,7 +235,7 @@ slashUsage(unsigned short int pager)
fprintf(output, _(" \\dE[S+] [PATTERN] list foreign tables\n"));
fprintf(output, _(" \\dx[+] [PATTERN] list extensions\n"));
fprintf(output, _(" \\dy [PATTERN] list event triggers\n"));
- fprintf(output, _(" \\l[+] list all databases\n"));
+ fprintf(output, _(" \\l[+] [PATTERN] list databases\n"));
fprintf(output, _(" \\sf[+] FUNCNAME show a function's definition\n"));
fprintf(output, _(" \\z [PATTERN] same as \\dp\n"));
fprintf(output, "\n");