sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit fd6d06ff610687ce65b64e2be4e8262f64391a90
parent da76ecb5f8bb0e0d9aeb31e39391ca5d361fa619
Author: taiyu <taiyu.len@gmail.com>
Date:   Tue,  8 Sep 2015 09:52:33 -0700

fix missing symbol bug

Diffstat:
Msway/config.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/sway/config.c b/sway/config.c @@ -304,6 +304,9 @@ char *do_var_replacement(char *str) { break; } } + if (i == config->symbols->length) { + ++find; + } } return str; }