- Fixed bug #788, which reported regex and readline versions, even though they
  are not used.
This commit is contained in:
Paul Beckingham 2011-06-14 21:27:28 -04:00
parent 8f6bf9ff45
commit 6242c4a8ae
2 changed files with 2 additions and 12 deletions

View file

@ -130,14 +130,6 @@ int CmdDiagnostics::execute (std::string& output)
out << bold.colorize ("Libraries")
<< "\n";
out << " Readline: "
#ifdef HAVE_LIBREADLINE
<< std::setbase (16) << RL_READLINE_VERSION
#else
<< "n/a"
#endif
<< "\n";
out << " Lua: "
#ifdef HAVE_LIBLUA
<< LUA_RELEASE
@ -208,10 +200,6 @@ int CmdDiagnostics::execute (std::string& output)
<< (context.config.getBoolean ("locking") ? "Enabled" : "Disabled")
<< "\n";
out << " Regex: "
<< (context.config.getBoolean ("regex") ? "Enabled" : "Disabled")
<< "\n";
// Determine rc.editor/$EDITOR/$VISUAL.
char* peditor;
if (context.config.get ("editor") != "")