Browse Source

fixup: move some language option keywords to the correct MNEM_TAB.

Caused when creating LoadLanguageOptions().
master
Juho Hiltunen 2 years ago
parent
commit
b4c223a256
1 changed files with 4 additions and 6 deletions
  1. 4
    6
      src/libespeak-ng/voice.h

+ 4
- 6
src/libespeak-ng/voice.h View File

@@ -132,6 +132,10 @@ typedef enum {
} VOICELANGATTRIBUTES;

static const MNEM_TAB langopts_tab[] = {
{ "apostrophe", 0x100+LOPT_APOSTROPHE },
{ "brackets", 0x100+LOPT_BRACKET_PAUSE },
{ "bracketsAnnounced", 0x100+LOPT_BRACKET_PAUSE_ANNOUNCED },
{ "dict_min", V_DICTMIN },
{ "dictrules", V_DICTRULES },
{ "intonation", V_INTONATION },
{ "l_dieresis", 0x100+LOPT_DIERESES },
@@ -178,12 +182,6 @@ static const MNEM_TAB keyword_tab[] = {
{ "klatt", V_KLATT },
{ "fast_test2", V_FAST },
{ "speed", V_SPEED },
{ "dict_min", V_DICTMIN },


{ "apostrophe", 0x100+LOPT_APOSTROPHE },
{ "brackets", 0x100+LOPT_BRACKET_PAUSE },
{ "bracketsAnnounced", 0x100+LOPT_BRACKET_PAUSE_ANNOUNCED },

{ NULL, 0 }
};

Loading…
Cancel
Save