Handle language "other".
authorhanda <handa>
Wed, 22 Oct 2008 00:40:32 +0000 (00:40 +0000)
committerhanda <handa>
Wed, 22 Oct 2008 00:40:32 +0000 (00:40 +0000)
tbl2mim.awk

index fa5d6ea..620e91e 100644 (file)
@@ -27,7 +27,11 @@ BEGIN {
 
 /^ICON *=/ { ICON = " \""$3"\""; next; }
 /^NAME *=/ { NAME = tolower($3); next; }
-/^LANGUAGES *=/ { LANG = $3; next; }
+/^LANGUAGES *=/ {
+    LANG = $3;
+    if (LANG == "other")
+       LANG = "t";
+    next; }
 /^STATUS_PROMPT *=/ { TITLE = $3; next; }
 /^BEGIN_TABLE/ {
     printf "(input-method %s %s)\n", LANG, NAME;