- Removed obsolete noSpaces() function.
This commit is contained in:
Paul Beckingham
2015-02-22 18:27:19 -05:00
parent 8791c0a921
commit 9f82926c65
4 changed files with 3 additions and 23 deletions

View File

@@ -849,7 +849,7 @@ void CLI::categorize ()
a->tag ("MODIFICATION");
// If the argument contains a space, it was quoted. Record that.
if (! noSpaces (raw))
if (! Lexer::isOneWord (raw))
a->tag ("QUOTED");
changes = true;
@@ -859,7 +859,7 @@ void CLI::categorize ()
a->tag ("FILTER");
// If the argument contains a space, it was quoted. Record that.
if (! noSpaces (raw))
if (! Lexer::isOneWord (raw))
a->tag ("QUOTED");
changes = true;