File: recursive

package info (click to toggle)
libxkbcommon 1.12.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 8,184 kB
  • sloc: ansic: 57,023; xml: 8,785; python: 7,449; yacc: 913; sh: 253; makefile: 23
file content (27 lines) | stat: -rw-r--r-- 494 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
20
21
22
23
24
25
26
27
default
xkb_types "foo" {
    type "FOO" {
        modifiers = None;
        map[None] = Level1;
        level_name[Level1]= "Any";
    };
    include "recursive"
};

xkb_types "bar" {
    type "BAR" {
        modifiers = None;
        map[None] = Level1;
        level_name[Level1]= "Any";
    };
    include "recursive(baz)"
};

xkb_types "baz" {
    type "BAZ" {
        modifiers = None;
        map[None] = Level1;
        level_name[Level1]= "Any";
    };
    include "recursive(bar)"
};