- Raised the lexeme count threshold to 3 to consider lexing an argument. This
  accomodates binary operators.
This commit is contained in:
Paul Beckingham 2014-11-04 23:16:37 -05:00
parent f790ee65c4
commit 2797541b8d

View file

@ -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)