From 6d9d896a3714b16ec3103a600b61d6c5f5f8597e Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 11 Jul 2015 13:47:26 -0400 Subject: [PATCH] CLI2: ::lexArguments auto-quotes orignally quoted args, but didn't dequote after --- src/CLI2.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CLI2.cpp b/src/CLI2.cpp index f2e3daa98..182a1d328 100644 --- a/src/CLI2.cpp +++ b/src/CLI2.cpp @@ -441,6 +441,7 @@ void CLI2::lexArguments () std::string word; if (Lexer::readWord ("'" + _original_args[i] + "'", "'", cursor, word)) { + Lexer::dequote (word); A2 unknown (word, Lexer::Type::word); if (lex.wasQuoted (_original_args[i])) unknown.tag ("QUOTED");