initialize xkb_rules.options to a null pointer
Initializing it to an empty string had broken configuring xkbcommon
through the environment (XKB_DEFAULT_OPTIONS).
Fixes: ae31391115
("initialize rules and xkb_rules")
This commit is contained in:
parent
2623a96ebf
commit
70da04a714
1 changed files with 1 additions and 1 deletions
|
@ -41,7 +41,7 @@ static const struct xkb_rule_names xkb_rules = {
|
|||
/* example:
|
||||
.options = "ctrl:nocaps",
|
||||
*/
|
||||
.options = "",
|
||||
.options = NULL,
|
||||
};
|
||||
|
||||
static const int repeat_rate = 25;
|
||||
|
|
Loading…
Reference in a new issue