1/*
2 * COMBINING DOUBLE ACUTE ACCENT
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'o', 0x030B, 0x0151, 0x00) },
8  { DEADTRANS(L'O', 0x030B, 0x0150, 0x00) },
9  { DEADTRANS(L'u', 0x030B, 0x0171, 0x00) },
10  { DEADTRANS(L'U', 0x030B, 0x0170, 0x00) },
11