Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d726897

Browse files
committed
Fix psql's \? output for \watch
It was reported as misaligned by Kyotaro, but it also needed to be turned into a single translatable phrase (like the one for \g is), as reported by Yugo. This is a new issue (commit f347ec7), so no backpatch is needed. Author: Kyotaro Horiguchi <[email protected]> Author: Yugo NAGATA <[email protected]> Discussion: https://postgr.es/m/[email protected]
1 parent 51908a3 commit d726897

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/bin/psql/help.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,9 @@ slashUsage(unsigned short int pager)
200200
HELP0(" \\gset [PREFIX] execute query and store result in psql variables\n");
201201
HELP0(" \\gx [(OPTIONS)] [FILE] as \\g, but forces expanded output mode\n");
202202
HELP0(" \\q quit psql\n");
203-
HELP0(" \\watch [[i=]SEC] [c=N] [m=MIN]\n");
204-
HELP0(" execute query every SEC seconds, up to N times\n");
205-
HELP0(" stop if less than MIN rows are returned\n");
203+
HELP0(" \\watch [[i=]SEC] [c=N] [m=MIN]\n"
204+
" execute query every SEC seconds, up to N times\n"
205+
" stop if less than MIN rows are returned\n");
206206
HELP0("\n");
207207

208208
HELP0("Help\n");

0 commit comments

Comments
 (0)