turn off espeak's default processing of uppercase letters

This needs to be turned off since speakup processes upper case by
raising the pitch.
This commit is contained in:
William Hubbs 2009-04-14 09:00:32 -05:00
commit e7d300a183

View file

@ -130,6 +130,7 @@ int main(int argc, char **argv)
set_pitch(&s, defaultPitch, ADJ_SET);
set_rate(&s, defaultRate, ADJ_SET);
set_volume(&s, defaultVolume, ADJ_SET);
espeak_SetParameter(espeakCAPITALS, 0, 0);
/* register signal handler */
signal(SIGINT, espeakup_sighandler);