include trailing text with the ) token so redirection works correctly

This commit is contained in:
Kelvin Sherlock 2022-11-23 18:18:32 -05:00
parent ce1a36eba5
commit 298c601300
1 changed files with 7 additions and 1 deletions

View File

@ -60,6 +60,7 @@
}
}
action parse_lparen {
if (scratch.empty()) {
parse(LPAREN, "(");
@ -71,7 +72,8 @@
action parse_rparen {
if (pcount <= 0) {
flush();
parse(RPAREN, ")");
// parse(RPAREN, ")");
scratch.push_back(fc);
fgoto main;
}
--pcount;
@ -179,6 +181,10 @@ int phase2::classify() {
%%write data;
if (type) return type;
if (scratch.front() == ')') {
type = RPAREN;
return type;
}
std::string argv0;
const unsigned char *p = (const unsigned char *)scratch.data();