Legacy Checking

- Added previously deprecated configuration variables to the list that
  are mentioned by the 'show' command.
This commit is contained in:
Paul Beckingham 2011-10-22 23:33:30 -04:00
parent 0aa953dc4e
commit 28133f8567
2 changed files with 6 additions and 2 deletions

View file

@ -146,8 +146,10 @@ std::string legacyCheckForDeprecatedVariables ()
it->first.substr (it->first.length () - 6) == ".limit")
deprecated.push_back (it->first);
if (it->first == "echo.command" ||
it->first == "edit.verbose")
if (it->first == "echo.command" ||
it->first == "edit.verbose" ||
it->first == "next" ||
it->first == "export.ical.class")
deprecated.push_back (it->first);
}