git-svn-id: https://espeak.svn.sourceforge.net/svnroot/espeak/trunk@162 d46cf337-b52f-0410-862d-fd96e6ae7743master
@@ -69,6 +69,7 @@ | |||
m) g g | |||
n) g g | |||
g (Y+ x // ge gi | |||
g (r g | |||
.group h |
@@ -2,7 +2,7 @@ | |||
[Setup] | |||
AppName=eSpeak | |||
AppVerName=eSpeak version 1.33 | |||
AppVerName=eSpeak version 1.34 | |||
AppCopyright=Licensed under GNU General Public License version 3. (See file License.txt for details). | |||
WindowVisible=yes | |||
@@ -1,7 +1,7 @@ | |||
[Setup] | |||
AppName=eSpeakEdit | |||
AppVerName=eSpeakEdit version 1.33 | |||
AppVerName=eSpeakEdit version 1.34 | |||
DefaultDirName={pf}\eSpeak | |||
DefaultGroupName=eSpeak | |||
OutputBaseFilename=setup_espeakedit |
@@ -35,7 +35,7 @@ | |||
#include "translate.h" | |||
#include "wave.h" | |||
const char *version_string = "1.34 06.Mar.08"; | |||
const char *version_string = "1.34 07.Mar.08"; | |||
const int version_phdata = 0x013400; | |||
int option_device_number = -1; |
@@ -100,12 +100,6 @@ void SynthesizeInit() | |||
// next_pause.ph = phoneme_tab[phonPAUSE]; // this must be done after voice selection | |||
next_pause.type = phPAUSE; | |||
next_pause.newword = 0; | |||
if(!iswalpha(0x010d)) | |||
{ | |||
// check that c-caron is recognized as an alphabetic character | |||
fprintf(stderr,"iswalpha() Accented letters are not recognized\n"); | |||
} | |||
} | |||
@@ -1568,6 +1562,12 @@ int SpeakNextClause(FILE *f_in, const void *text_in, int control) | |||
if(option_phonemes > 0) | |||
{ | |||
fprintf(f_trans,"%s\n",translator->phon_out); | |||
if(!iswalpha(0x010d)) | |||
{ | |||
// check that c-caron is recognized as an alphabetic character | |||
fprintf(stderr,"Warning: Accented letters are not recognized, eg: U+010D\n"); | |||
} | |||
} | |||
if(phoneme_callback != NULL) | |||
{ |