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:
Lennart Jablonka 2022-06-03 01:15:06 +02:00
parent 2623a96ebf
commit 70da04a714
1 changed files with 1 additions and 1 deletions

View File

@ -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;