File: duplicate_language_stmt.fea

package info (click to toggle)
fonttools 4.62.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 27,652 kB
  • sloc: python: 145,583; xml: 103; makefile: 24
file content (19 lines) | stat: -rw-r--r-- 390 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;