diff --git a/src/commands/CmdShow.cpp b/src/commands/CmdShow.cpp index 7fe31a19a..174a7d65d 100644 --- a/src/commands/CmdShow.cpp +++ b/src/commands/CmdShow.cpp @@ -72,7 +72,6 @@ int CmdShow::execute (std::string& output) std::string recognized = " abbreviation.minimum" " active.indicator" - " annotations" " avoidlastcolumn" " bulk" " burndown.bias" diff --git a/src/legacy.cpp b/src/legacy.cpp index 08e1590cf..bcf9c984d 100644 --- a/src/legacy.cpp +++ b/src/legacy.cpp @@ -145,9 +145,15 @@ std::string legacyCheckForDeprecatedVariables () it->first.substr (it->first.length () - 6) == ".limit") deprecated.push_back (it->first); + // report.*.annotaitons + if (it->first.substr (0, 7) == "report." && + it->first.substr (it->first.length () - 12) == ".annotations") + deprecated.push_back (it->first); + if (it->first == "echo.command" || it->first == "edit.verbose" || it->first == "next" || + it->first == "annotations" || it->first == "export.ical.class") deprecated.push_back (it->first); }