Browse Source

Bug fix. Letter groups in *_rules file were not processed correctly. eg. .L01


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

+ 1
- 1
src/dictionary.cpp View File

@@ -649,7 +649,7 @@ int Translator::IsLetterGroup(char *word, int group, int pre)

p = letterGroups[group];

while(*p != 0)
while(*p != RULE_GROUP_END)
{
w = word;
while(*p == *w)

Loading…
Cancel
Save