Removed a never-true condition

This commit is contained in:
Nobuyoshi Nakada 2020-08-26 21:16:51 +09:00
parent 72cb9bc55f
commit cc36b5d4ac
No known key found for this signature in database
GPG Key ID: 7CD2805BFA3770C6

View File

@ -8556,7 +8556,7 @@ parse_percent(struct parser_params *p, const int space_seen, const enum lex_stat
return 0;
}
}
if (c == -1 || term == -1) {
if (term == -1) {
compile_error(p, "unterminated quoted string meets end of file");
return 0;
}