mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-28 13:37:20 +02:00
TW-1501
- TW-1501 Calc can't handle multi-digit numbers in some expressions (thanks to Jeremy John Reeder).
This commit is contained in:
parent
adf9f25289
commit
588009d679
2 changed files with 5 additions and 3 deletions
|
@ -57,7 +57,7 @@ int main (int argc, char** argv)
|
|||
try
|
||||
{
|
||||
bool infix = true;
|
||||
bool ambiguous = true;
|
||||
bool ambiguous = false;
|
||||
|
||||
// Add a source for constants.
|
||||
Eval e;
|
||||
|
@ -77,8 +77,8 @@ int main (int argc, char** argv)
|
|||
<< " -d|--debug Debug mode\n"
|
||||
<< " -i|--infix Infix expression (default)\n"
|
||||
<< " -p|--postfix Postfix expression\n"
|
||||
<< " -a|--ambiguous Choose dates over numbers when ambiguous (default)\n"
|
||||
<< " -n|--noambiguous Choose numbers over dates when ambiguous\n"
|
||||
<< " -a|--ambiguous Choose dates over numbers when ambiguous\n"
|
||||
<< " -n|--noambiguous Choose numbers over dates when ambiguous (default)\n"
|
||||
<< "\n";
|
||||
exit (1);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue