projects
/
m17n
/
libotf.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4414f0f
)
(get_langsys): If script is NULL, use the first
author
handa
<handa>
Mon, 12 Jul 2004 01:50:41 +0000
(
01:50
+0000)
committer
handa
<handa>
Mon, 12 Jul 2004 01:50:41 +0000
(
01:50
+0000)
one in script_list.
src/otfdrive.c
patch
|
blob
|
history
diff --git
a/src/otfdrive.c
b/src/otfdrive.c
index
2b18522
..
59b8114
100644
(file)
--- a/
src/otfdrive.c
+++ b/
src/otfdrive.c
@@
-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;