diff options
author | Lennart Jablonka <hummsmith42@gmail.com> | 2022-06-03 01:15:06 +0200 |
---|---|---|
committer | Lennart Jablonka <hummsmith42@gmail.com> | 2022-06-03 01:23:35 +0200 |
commit | 70da04a714914990556b8f123895301a57ee6d3f (patch) | |
tree | acd737e78c67e0866c7584871aaa6254bde05369 | |
parent | 2623a96ebf4c0b43e65d3ff3d7c1b0e56634acf3 (diff) |
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: ae313911153b ("initialize rules and xkb_rules")
-rw-r--r-- | config.def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index 4f131dd..8c27380 100644 --- a/config.def.h +++ b/config.def.h @@ -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; |