diff --git a/src/Parser.cpp b/src/Parser.cpp index 53afd409e..d225a6440 100644 --- a/src/Parser.cpp +++ b/src/Parser.cpp @@ -79,6 +79,10 @@ void Parser::initialize (int argc, const char** argv) branch->tag ("ORIGINAL"); branch->tag ("?"); + // If the argument contains a space, it was quoted. Remember that. + if (! noSpaces (raw)) + branch->tag ("QUOTED"); + std::vector > lexemes; Lexer::token_split (lexemes, raw);