From 22f1bf709e5ac513749cb6d90f7d80f9b7eeed6c Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 8 Jun 2014 14:18:34 -0400 Subject: [PATCH] CmdCalc - Set ambiguity to false, thus disabling recognition of certain date forms. --- src/commands/CmdCalc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/CmdCalc.cpp b/src/commands/CmdCalc.cpp index 4810d3f09..59b4db268 100644 --- a/src/commands/CmdCalc.cpp +++ b/src/commands/CmdCalc.cpp @@ -58,7 +58,7 @@ int CmdCalc::execute (std::string& output) Eval e; e.addSource (namedDates); e.addSource (domSource); - e.ambiguity (false); // TODO Could/should be configurable. + e.ambiguity (false); // TODO Configurable? e.debug (context.config.getBoolean ("debug")); // Compile all the args into one expression.