Browse Source

compiledata: declare place_articulation locally.

master
Reece H. Dunn 8 years ago
parent
commit
8050b3f1b6
1 changed files with 1 additions and 3 deletions
  1. 1
    3
      src/libespeak-ng/compiledata.c

+ 1
- 3
src/libespeak-ng/compiledata.c View File

@@ -366,7 +366,6 @@ static int n_phcodes_list[N_PHONEME_TABS];
static PHONEME_TAB_LIST phoneme_tab_list2[N_PHONEME_TABS];
static PHONEME_TAB *phoneme_tab2;
static int phoneme_flags;
static int place_articulation;

static char *p_equivalence;
static char equivalence_buf[20000];
@@ -1971,7 +1970,6 @@ static void CallPhoneme(void)
// Phoneme type has not been set. Copy it from the called phoneme
phoneme_out->type = ph->type;
phoneme_flags = ph->phflags & ~phARTICULATION;
place_articulation = (ph->phflags & phARTICULATION) >> 16;
phoneme_out->start_type = ph->start_type;
phoneme_out->end_type = ph->end_type;
phoneme_out->std_length = ph->std_length;
@@ -2021,7 +2019,7 @@ int CompilePhoneme(int compile_phoneme)
if_stack[0].returned = 0;
after_if = 0;
phoneme_flags = 0;
place_articulation = 0;
int place_articulation = 0;

NextItem(tSTRING);
if (compile_phoneme) {

Loading…
Cancel
Save