diff options
Diffstat (limited to 'src/lib/libremessages.1.ronn')
-rw-r--r-- | src/lib/libremessages.1.ronn | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/lib/libremessages.1.ronn b/src/lib/libremessages.1.ronn index 6f1ecf5..daafd2f 100644 --- a/src/lib/libremessages.1.ronn +++ b/src/lib/libremessages.1.ronn @@ -71,8 +71,8 @@ Unless otherwise noted, these do not implicitly call `gettext`. using the default handler (which is good for most purposes), it will call <HANDLER> with the arguments `<HANDLER> <SIGNAL_NAME> <MESSAGE> [<MESSAGE_ARGS>...]`, where - <MESSAGE> is a `printf`(1)-formatted string, and <MESSAGE_ARGS> - are its arguments. + <MESSAGE> is a `printf`(1)-formatted string that is fed through + `gettext`, and <MESSAGE_ARGS> are its arguments. ### PROSE ROUTINES @@ -81,10 +81,6 @@ word-wrapped prose. For each of these, <MESSAGE> is fed through `gettext` automatically. - * `print` <MESSAGE> [<ARGS>...]: - Like `printf`(1), but `gettext`-aware, and automatically prints a - trailing newline. - * `prose` <MESSAGE> [<ARGS>...]: Takes a `printf`(1)-formatted string, collapses whitespace (HTML-style), and then word-wraps it. @@ -114,7 +110,7 @@ any arguments. Each of these print to stderr, not stdout. For each of these, <MESSAGE> is fed through `gettext` automatically. * `plain` <MESSAGE> [<ARGS>...]: - Prints "plain" message in bold, indented with 4 spaces. + Prints a "plain" message in bold, indented with 4 spaces. * `msg` <MESSAGE> [<ARGS>...]: Prints a top-level priority notification. @@ -134,6 +130,10 @@ For each of these, <MESSAGE> is fed through `gettext` automatically. * `stat_done`: Prints a "done" type message to terminate `stat_busy`. + * `print` <MESSAGE> [<ARGS>...]: + Like `printf`(1), but `gettext`-aware, and automatically prints a + trailing newline. + * `term_title` <MESSAGE> [<ARGS>...]: Sets the terminal title to the specified message. |