summaryrefslogtreecommitdiff
path: root/tools/genlang
diff options
context:
space:
mode:
Diffstat (limited to 'tools/genlang')
-rwxr-xr-xtools/genlang9
1 files changed, 6 insertions, 3 deletions
diff --git a/tools/genlang b/tools/genlang
index 6032c84899..e13cd3faf9 100755
--- a/tools/genlang
+++ b/tools/genlang
@@ -100,15 +100,18 @@ for(@hfile) {
100 print HFILE " $_,\n"; 100 print HFILE " $_,\n";
101} 101}
102 102
103print HFILE " /* --- below this follows voice-only strings --- */\n", 103print HFILE <<MOO
104 " VOICEONLY_DELIMITER = 0x8000,\n"; 104 LANG_LAST_INDEX_IN_ARRAY, /* this is not a string, this is a marker */
105 /* --- below this follows voice-only strings --- */
106 VOICEONLY_DELIMITER = 0x8000,
107MOO
108 ;
105 109
106for(@vfile) { 110for(@vfile) {
107 print HFILE " $_,\n"; 111 print HFILE " $_,\n";
108} 112}
109 113
110print HFILE <<MOO 114print HFILE <<MOO
111 LANG_LAST_INDEX_IN_ARRAY /* this is not a string, this is a marker */
112}; 115};
113/* end of generated enum list */ 116/* end of generated enum list */
114MOO 117MOO