1/* 2 * COMBINING RING ABOVE 3 * The dead key transformation set was defined by checking the availability of 4 * the resulting letters in Unicode character table: https://unicode-table.com 5 */ 6 7 { DEADTRANS(L'a', 0x030A, 0x00E5, 0x00) }, 8 { DEADTRANS(L'A', 0x030A, 0x00C5, 0x00) }, 9 { DEADTRANS(L'u', 0x030A, 0x016F, 0x00) }, 10 { DEADTRANS(L'U', 0x030A, 0x016E, 0x00) }, 11 { DEADTRANS(L'w', 0x030A, 0x1E98, 0x00) }, 12 /* no Unicode capital W with ring above */ 13 { DEADTRANS(L'y', 0x030A, 0x1E99, 0x00) }, 14 /* no Unicode capital Y with ring above */ 15