Browse Source

Fix: $textmode, word replacement didn't include end-of-word separator (space).


git-svn-id: https://espeak.svn.sourceforge.net/svnroot/espeak/trunk@154 d46cf337-b52f-0410-862d-fd96e6ae7743
master
jonsd 17 years ago
parent
commit
3b2570f560
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      src/compiledict.cpp

+ 2
- 1
src/compiledict.cpp View File

@@ -389,7 +389,8 @@ static char nullstring[] = {0};

if(text_not_phonemes)
{
strcpy(encoded_ph,phonetic); // this is replacement text, so don't encode as phonemes
// this is replacement text, so don't encode as phonemes. Restrict the length of the replacement word
strncpy0(encoded_ph,phonetic,N_WORD_BYTES-4);
}
else
{

Loading…
Cancel
Save