Skip to content

Commit

Permalink
spd-say: Clarify the behavior of --pipe-mode
Browse files Browse the repository at this point in the history
Fixes #855
  • Loading branch information
sthibaul committed Sep 6, 2023
1 parent 1a97e88 commit a400bc9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions doc/spd-say.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions doc/spd-say.texi
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ Spell the message.
@item -x or --ssml
Set SSML mode on (default: off). The text contains SSML markup.
@item -e or --pipe-mode
Set pipe mode on (default: off). Reads text from stdin, writes to stdout, and also
sends to Speech Dispatcher.
Set pipe mode on (default: off). Read text to be spoken on stdin, write it on stdout unchanged, and the
corresponding speech through Speech Dispatcher.
@item -w or --wait
Wait till the end of speaking the message. In this mode, spd-say returns only after
the message is fully spoken on the speakers or after it gets discarded.
Expand Down
3 changes: 2 additions & 1 deletion src/clients/say/options.c
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ void options_print_help(char *argv[])
printf("\n");

printf(" -e, --pipe-mode ");
printf(_("Pipe from stdin to stdout plus Speech Dispatcher\n"));
printf(_("Read text to be spoken on stdin, write it on stdout unchanged, and the\n"));
printf(_("corresponding speech through Speech Dispatcher.\n"));

printf(" -P, --priority ");
printf(_("Set priority of the message "));
Expand Down

0 comments on commit a400bc9

Please sign in to comment.