Removed a never-true condition
This commit is contained in:
parent
72cb9bc55f
commit
cc36b5d4ac
2
parse.y
2
parse.y
@ -8556,7 +8556,7 @@ parse_percent(struct parser_params *p, const int space_seen, const enum lex_stat
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (c == -1 || term == -1) {
|
if (term == -1) {
|
||||||
compile_error(p, "unterminated quoted string meets end of file");
|
compile_error(p, "unterminated quoted string meets end of file");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user