dwl

My patch set and modifications to dwl
git clone git://git.ethandl.dev/dwl
Log | Files | Refs | README | LICENSE

commit 70da04a714914990556b8f123895301a57ee6d3f
parent 2623a96ebf4c0b43e65d3ff3d7c1b0e56634acf3
Author: Lennart Jablonka <hummsmith42@gmail.com>
Date:   Fri,  3 Jun 2022 01:15:06 +0200

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")

Diffstat:
Mconfig.def.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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;