mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
CLI2: Fixed bug where only the first lexeme was used
- For quoted Lexer::Type::pair arguments, use the whole quoted arg, not merely the first lexeme.
This commit is contained in:
parent
36814adcd2
commit
d6d01ee1bf
1 changed files with 1 additions and 1 deletions
|
@ -427,7 +427,7 @@ void CLI2::lexArguments ()
|
|||
else if (terminated)
|
||||
type = Lexer::Type::word;
|
||||
|
||||
A2 a (lexeme, type);
|
||||
A2 a (_original_args[i], type);
|
||||
if (terminated)
|
||||
a.tag ("TERMINATED");
|
||||
if (quoted)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue