aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sway/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/config.c b/sway/config.c
index ced94799..637e2dbc 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -190,8 +190,8 @@ bool read_config(FILE *file, bool is_active) {
190 while (!feof(file)) { 190 while (!feof(file)) {
191 int _; 191 int _;
192 char *line = read_line(file); 192 char *line = read_line(file);
193 line = strip_comments(line);
194 line = strip_whitespace(line, &_); 193 line = strip_whitespace(line, &_);
194 line = strip_comments(line);
195 if (!line[0]) { 195 if (!line[0]) {
196 goto _continue; 196 goto _continue;
197 } 197 }