Skip to content

Commit 15dc3f5

Browse files
committed
Update "help" output to reflect that \timing now takes an optional on/off
argument.
1 parent 8b64a26 commit 15dc3f5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/bin/psql/help.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
*
44
* Copyright (c) 2000-2008, PostgreSQL Global Development Group
55
*
6-
* $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.128 2008/05/16 17:17:00 momjian Exp $
6+
* $PostgreSQL: pgsql/src/bin/psql/help.c,v 1.129 2008/06/11 10:55:43 heikki Exp $
77
*/
88
#include "postgres_fe.h"
99

@@ -244,10 +244,10 @@ slashUsage(unsigned short int pager)
244244
fprintf(output, "\n");
245245

246246
fprintf(output, _("External\n"));
247-
fprintf(output, _(" \\cd [DIR] change the current working directory\n"));
248-
fprintf(output, _(" \\timing toggle timing of commands (currently %s)\n"),
247+
fprintf(output, _(" \\cd [DIR] change the current working directory\n"));
248+
fprintf(output, _(" \\timing [on|off] toggle timing of commands (currently %s)\n"),
249249
ON(pset.timing));
250-
fprintf(output, _(" \\! [COMMAND] execute command in shell or start interactive shell\n"));
250+
fprintf(output, _(" \\! [COMMAND] execute command in shell or start interactive shell\n"));
251251
fprintf(output, "\n");
252252

253253
fprintf(output, _("Variable\n"));

0 commit comments

Comments
 (0)