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