summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2009-04-03 23:38:19 +0000
committerTom Lane2009-04-03 23:38:19 +0000
commitb6966b8b1cf2b836623623eb6f0b2536793c2f39 (patch)
tree3218e7bae5e9e32a3bace2b547d7a3986399b0dc
parent3671c87e57870ea2fc60a1c9f1b3e916cdada7e1 (diff)
Add missing help output for \ef option. Andrew Gierth
-rw-r--r--src/bin/psql/help.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c
index 42a268322b..389feb07d6 100644
--- a/src/bin/psql/help.c
+++ b/src/bin/psql/help.c
@@ -162,7 +162,7 @@ slashUsage(unsigned short int pager)
{
FILE *output;
- output = PageOutput(85, pager);
+ output = PageOutput(86, pager);
/* if you add/remove a line here, change the row count above */
@@ -175,6 +175,7 @@ slashUsage(unsigned short int pager)
fprintf(output, _("Query Buffer\n"));
fprintf(output, _(" \\e [FILE] edit the query buffer (or file) with external editor\n"));
+ fprintf(output, _(" \\ef [FUNCNAME] edit a function definition with external editor\n"));
fprintf(output, _(" \\p show the contents of the query buffer\n"));
fprintf(output, _(" \\r reset (clear) the query buffer\n"));
#ifdef USE_READLINE