mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
CLI
- Raised the lexeme count threshold to 3 to consider lexing an argument. This accomodates binary operators.
This commit is contained in:
parent
f790ee65c4
commit
2797541b8d
1 changed files with 1 additions and 1 deletions
|
@ -629,7 +629,7 @@ void CLI::addArg (const std::string& arg)
|
|||
foundOP = true;
|
||||
|
||||
// This one looks interesting.
|
||||
if (lexemes.size () > 1 &&
|
||||
if (lexemes.size () > 2 &&
|
||||
foundOP)
|
||||
{
|
||||
for (l = lexemes.begin (); l != lexemes.end (); ++l)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue