sway

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

commit 8e201091a52a74d87db18c18a21fc39aedb95eb2
parent 443ae9b89e9e1534407c2dd273a4e47ddb3610c7
Author: Drew DeVault <sir@cmpwn.com>
Date:   Tue, 18 Aug 2015 18:03:38 -0400

Fix indented comments being weird

Diffstat:
Msway/config.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sway/config.c b/sway/config.c @@ -188,8 +188,8 @@ bool read_config(FILE *file, bool is_active) { while (!feof(file)) { int _; char *line = read_line(file); - line = strip_comments(line); line = strip_whitespace(line, &_); + line = strip_comments(line); if (!line[0]) { goto _continue; }