add --default-voice option to the help and README

This commit adds the documentation to the help and README files for the
--default-voice command line option.
This commit is contained in:
William Hubbs 2009-03-08 10:18:44 -05:00
commit e2493db48e
2 changed files with 8 additions and 6 deletions

7
README
View file

@ -41,9 +41,10 @@ Command Line Options
Espeakup currently accepts the following command line options:
--debug, -d Debug mode (stay in the foreground)
--help, -h Show help
--version, -v Display the software version.
--default-voice=voice, -V voice Set default voice.
--debug, -d Debug mode (stay in the foreground).
--help, -h Show this help.
--version, -v Display the software version.
Questions
=========

7
cli.c
View file

@ -44,9 +44,10 @@ static void show_help()
{
printf("Usage: espeakup [options]\n\n");
printf("Options are as follows:\n");
printf(" --debug, -d\tDebug mode (stay in the foreground)\n");
printf(" --help, -h\tShow this help\n");
printf(" --version, -v\tDisplay the software version.\n");
printf(" --default-voice=voice, -V voice\tSet default voice.\n");
printf(" --debug, -d\t\t\t\tDebug mode (stay in the foreground).\n");
printf(" --help, -h\t\t\t\tShow this help.\n");
printf(" --version, -v\t\t\t\tDisplay the software version.\n");
exit(0);
}