fonttools/Tests/feaLib/data/duplicate_language_stmt.fea
Colin Rofls 6bc5d7f887 [feaLib] Allow duplicate script/language statements
And accumulate all of the declared lookups into the appropriate feature.
2025-01-22 12:58:44 -05:00

20 lines
390 B
Plaintext

languagesystem DFLT dflt;
languagesystem latn NLD;
feature locl {
script latn;
language NLD;
lookup one {
sub a by b;
} one;
# if we encounter a duplicate script/lang statement we want to combine them
# (lookups https://github.com/fonttools/fonttools/issues/3748)
script latn;
language NLD;
lookup two {
sub x by z;
} two;
} locl;