diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/parse/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parse/mod.rs b/src/parse/mod.rs index 4f38f9b..f7aa364 100644 --- a/src/parse/mod.rs +++ b/src/parse/mod.rs @@ -493,6 +493,7 @@ impl Parse for ExpString { if b.is_empty() { return Err(ParseError::Eof); } else if b.peek() == b')' { + b.adv(); p.push(StringPart::Cmd(cmd)); } else { return Err(ParseError::Expected(')')); |
