(get_langsys): If script is NULL, use the first
authorhanda <handa>
Mon, 12 Jul 2004 01:50:41 +0000 (01:50 +0000)
committerhanda <handa>
Mon, 12 Jul 2004 01:50:41 +0000 (01:50 +0000)
one in script_list.

src/otfdrive.c

index 2b18522..59b8114 100644 (file)
@@ -126,7 +126,8 @@ get_langsys (OTF_ScriptList *script_list, char *script, char *language)
   int i, j;
 
   for (i = 0; i < script_list->ScriptCount; i++)
-    if (script_list->Script[i].ScriptTag == script_tag)
+    if (! script_tag
+       || script_list->Script[i].ScriptTag == script_tag)
       {
        OTF_Script *script = script_list->Script + i;