Bug: The 'filter' verbosity token code was missing
- Probbably cut out during the CLI --> CLI2 cutover.
This commit is contained in:
17
src/CLI2.cpp
17
src/CLI2.cpp
@@ -663,6 +663,23 @@ void CLI2::prepareFilter ()
|
|||||||
desugarFilterAttributes ();
|
desugarFilterAttributes ();
|
||||||
desugarFilterPatterns ();
|
desugarFilterPatterns ();
|
||||||
insertJunctions (); // Deliberately after all desugar calls.
|
insertJunctions (); // Deliberately after all desugar calls.
|
||||||
|
|
||||||
|
if (context.verbose ("filter"))
|
||||||
|
{
|
||||||
|
std::string combined;
|
||||||
|
for (auto& a : _args)
|
||||||
|
{
|
||||||
|
if (a.hasTag ("FILTER"))
|
||||||
|
{
|
||||||
|
if (combined != "")
|
||||||
|
combined += " ";
|
||||||
|
|
||||||
|
combined += a.attribute ("raw");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
context.footnote (std::string (STRING_COLUMN_LABEL_FILTER) + ": " + combined);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|||||||
Reference in New Issue
Block a user