diff options
author | Mattias Andrée <maandree@operamail.com> | 2015-03-24 19:02:14 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-03-24 19:02:14 +0100 |
commit | bf102f6036b9291f0494b253b1558f2dab9ec001 (patch) | |
tree | 875101861b0b9434419a5875e4301a3bd5d34af0 /info/libpassphrase.texinfo | |
parent | fix PASSPHRASE_TEXT (diff) | |
download | libpassphrase-bf102f6036b9291f0494b253b1558f2dab9ec001.tar.gz libpassphrase-bf102f6036b9291f0494b253b1558f2dab9ec001.tar.bz2 libpassphrase-bf102f6036b9291f0494b253b1558f2dab9ec001.tar.xz |
m + doc PASSPHRASE_STAR_CHAR, PASSPHRASE_TEXT_EMPTY and PASSPHRASE_TEXT_NOT_EMPTY1427220157
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r-- | info/libpassphrase.texinfo | 35 |
1 files changed, 33 insertions, 2 deletions
diff --git a/info/libpassphrase.texinfo b/info/libpassphrase.texinfo index 7a82f3f..d981a3f 100644 --- a/info/libpassphrase.texinfo +++ b/info/libpassphrase.texinfo @@ -221,10 +221,10 @@ The following options are defined: @item @code{PASSPHRASE_ECHO} Do not hide the passphrase. -@item @code{PASSPHRASE_STAR} @footnote{May not be combined with @code{PASSPHRASE_ECHO}.} +@item @code{PASSPHRASE_STAR} @footnote{May not be combined with @code{PASSPHRASE_ECHO} or @code{PASSPHRASE_TEXT}.} Use `*' for each character instead of disabling echoing. -@item @code{PASSPHRASE_TEXT} @footnote{May not be combined with @code{PASSPHRASE_TEXT}.} +@item @code{PASSPHRASE_TEXT} @footnote{May not be combined with @code{PASSPHRASE_STAR} or @code{PASSPHRASE_ECHO}.} Use the texts `(empty)' and `(not empty)' to describe whether anything has been entered or not the instead of disabling echoing. @@ -319,6 +319,37 @@ in @command{valgrind}. @end table +In addition, you may use the follow flags. + +@table @asis + +@item @code{PASSPHRASE_STAR_CHAR} +The text to print instead of the character `*' when +@code{PASSPHRASE_STAR} is used. For example you may run +@example +make OPTIONS=PASSPHRASE_STAR \ + PASSPHRASE_STAR_CHAR="#" +@end example + +@item @code{PASSPHRASE_TEXT_EMPTY} +The text to print instead of the `(empty)' when +@code{PASSPHRASE_TEXT} is used. For example you may run +@example +make OPTIONS=PASSPHRASE_TEXT \ + PASSPHRASE_TEXT_EMPTY="there is nothing here" +@end example + +@item @code{PASSPHRASE_TEXT_NOT_EMPTY} +The text to print instead of the `(not empty)' when +@code{PASSPHRASE_TEXT} is used. For example you may run +@example +make OPTIONS=PASSPHRASE_TEXT \ + PASSPHRASE_TEXT_NOT_EMPTY="there is something here" +@end example + +@end table + + @node GNU Free Documentation License @appendix GNU Free Documentation License |