From 6aaa7c5074f61aaabb8629b0a3e8a0d26ba984ba Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Thu, 16 Jul 2015 16:07:41 -0400 Subject: [PATCH] CLI2: Some plain args were not spotted - A plain arg can be Lexer::Type::word or Lexer::Type::dom. --- src/CLI2.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/CLI2.cpp b/src/CLI2.cpp index c31951f18..2cb5cde65 100644 --- a/src/CLI2.cpp +++ b/src/CLI2.cpp @@ -1647,7 +1647,8 @@ void CLI2::desugarFilterPlainArgs () ppraw == "or" || ppraw == "xor") && - prev->_lextype == Lexer::Type::word && // candidate + (prev->_lextype == Lexer::Type::dom || // candidate + prev->_lextype == Lexer::Type::word) && // candidate prev->hasTag ("FILTER") && // candidate