From f2ecb61edf35eea589a8b31616598e975f876035 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 27 Jul 2015 02:36:35 -0400 Subject: [PATCH] CLI2: PSEUDO args are no longer candidates for search terms --- src/CLI2.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/CLI2.cpp b/src/CLI2.cpp index 16f197139..c75328e70 100644 --- a/src/CLI2.cpp +++ b/src/CLI2.cpp @@ -1638,6 +1638,7 @@ void CLI2::desugarFilterPlainArgs () prev->_lextype == Lexer::Type::word) && // candidate prev->hasTag ("FILTER") && // candidate + ! prev->hasTag ("PSEUDO") && // non-candidate (a._lextype != Lexer::Type::op || // argY raw == "(" ||