Fix indented comments being weird

This commit is contained in:
Drew DeVault 2015-08-18 18:03:38 -04:00
parent 443ae9b89e
commit 8e201091a5

View File

@ -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;
}