Browse Source

Merge commit '0994206f710a4defc1eecfb78ab70ff57c58fcda'

master
Reece H. Dunn 8 years ago
parent
commit
0383e3525a
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/libespeak-ng/compiledict.c

+ 2
- 2
src/libespeak-ng/compiledict.c View File

@@ -411,8 +411,8 @@ static int compile_line(char *linebuf, char *dict_line, int n_dict_line, int *ha

step = LINE_PARSER_WORD;

c = 0;
while (c != '\n') {
c = *p;
while (c != '\n' && c != '\0') {
c = *p;

if ((c == '?') && (step == 0)) {

Loading…
Cancel
Save