diff options
author | Alvaro Herrera | 2023-09-18 14:19:25 +0000 |
---|---|---|
committer | Alvaro Herrera | 2023-09-18 14:19:25 +0000 |
commit | d726897c571b4269096c2cd13af804d16d089669 (patch) | |
tree | 207cdeff76011dba8887c483f2fe0f4f07eed360 | |
parent | 51908a37d7ea67655560ff2efcba66816ca458e2 (diff) |
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 f347ec76e2a2), so no backpatch is needed.
Author: Kyotaro Horiguchi <[email protected]>
Author: Yugo NAGATA <[email protected]>
Discussion: https://postgr.es/m/[email protected]
-rw-r--r-- | src/bin/psql/help.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index 38c165a627..12280c0e54 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -200,9 +200,9 @@ slashUsage(unsigned short int pager) HELP0(" \\gset [PREFIX] execute query and store result in psql variables\n"); HELP0(" \\gx [(OPTIONS)] [FILE] as \\g, but forces expanded output mode\n"); HELP0(" \\q quit psql\n"); - HELP0(" \\watch [[i=]SEC] [c=N] [m=MIN]\n"); - HELP0(" execute query every SEC seconds, up to N times\n"); - HELP0(" stop if less than MIN rows are returned\n"); + HELP0(" \\watch [[i=]SEC] [c=N] [m=MIN]\n" + " execute query every SEC seconds, up to N times\n" + " stop if less than MIN rows are returned\n"); HELP0("\n"); HELP0("Help\n"); |