mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Filter
- Set ambiguity to false, thus disabling recognition of certain date forms.
This commit is contained in:
parent
0aa323164a
commit
ddcadb35f7
1 changed files with 2 additions and 0 deletions
|
@ -92,6 +92,7 @@ void Filter::subset (const std::vector <Task>& input, std::vector <Task>& output
|
|||
// it is mostly noise.
|
||||
eval.debug (context.config.getBoolean ("debug"));
|
||||
eval.compileExpression (filterExpr);
|
||||
eval.ambiguity (false);
|
||||
eval.debug (false);
|
||||
|
||||
std::vector <Task>::const_iterator task;
|
||||
|
@ -144,6 +145,7 @@ void Filter::subset (std::vector <Task>& output)
|
|||
// it is mostly noise.
|
||||
eval.debug (context.config.getBoolean ("debug"));
|
||||
eval.compileExpression (filterExpr);
|
||||
eval.ambiguity (false);
|
||||
eval.debug (false);
|
||||
|
||||
output.clear ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue