General QoL changes

This commit is contained in:
topjohnwu
2019-12-13 00:37:06 -05:00
parent 8c500709e4
commit af060b3132
22 changed files with 205 additions and 213 deletions

View File

@@ -416,10 +416,10 @@ void parse_statement(const char *statement) {
}
void load_rule_file(const char *file) {
file_readline(file, [](string_view line) -> bool {
file_readline(true, file, [](string_view line) -> bool {
if (line.empty() || line[0] == '#')
return true;
parse_statement(line.data());
return true;
}, true);
});
}