Add missing help output for \ef option. Andrew Gierth
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 3 Apr 2009 23:38:19 +0000 (23:38 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 3 Apr 2009 23:38:19 +0000 (23:38 +0000)
src/bin/psql/help.c

index 42a268322bc6e87c6266d8c8ce6edc4078f3c29d..389feb07d67692333a8772109dce0d32a8c58bce 100644 (file)
@@ -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