mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-07-07 20:06:36 +02:00
Bug #788
- Fixed bug #788, which reported regex and readline versions, even though they are not used.
This commit is contained in:
parent
8f6bf9ff45
commit
6242c4a8ae
2 changed files with 2 additions and 12 deletions
|
@ -101,6 +101,8 @@
|
||||||
active (thanks to Adam Wolk).
|
active (thanks to Adam Wolk).
|
||||||
+ Fixed bug #785, which fixes a broken build on Solaris (thanks to Owen
|
+ Fixed bug #785, which fixes a broken build on Solaris (thanks to Owen
|
||||||
Clarke).
|
Clarke).
|
||||||
|
+ Fixed bug #788, which reported regex and readline versions, even though they
|
||||||
|
are not used.
|
||||||
|
|
||||||
# Untracked Bugs, biggest first.
|
# Untracked Bugs, biggest first.
|
||||||
+ Fixed bug that required the '%YAML' prologue in a YAML import.
|
+ Fixed bug that required the '%YAML' prologue in a YAML import.
|
||||||
|
|
|
@ -130,14 +130,6 @@ int CmdDiagnostics::execute (std::string& output)
|
||||||
out << bold.colorize ("Libraries")
|
out << bold.colorize ("Libraries")
|
||||||
<< "\n";
|
<< "\n";
|
||||||
|
|
||||||
out << " Readline: "
|
|
||||||
#ifdef HAVE_LIBREADLINE
|
|
||||||
<< std::setbase (16) << RL_READLINE_VERSION
|
|
||||||
#else
|
|
||||||
<< "n/a"
|
|
||||||
#endif
|
|
||||||
<< "\n";
|
|
||||||
|
|
||||||
out << " Lua: "
|
out << " Lua: "
|
||||||
#ifdef HAVE_LIBLUA
|
#ifdef HAVE_LIBLUA
|
||||||
<< LUA_RELEASE
|
<< LUA_RELEASE
|
||||||
|
@ -208,10 +200,6 @@ int CmdDiagnostics::execute (std::string& output)
|
||||||
<< (context.config.getBoolean ("locking") ? "Enabled" : "Disabled")
|
<< (context.config.getBoolean ("locking") ? "Enabled" : "Disabled")
|
||||||
<< "\n";
|
<< "\n";
|
||||||
|
|
||||||
out << " Regex: "
|
|
||||||
<< (context.config.getBoolean ("regex") ? "Enabled" : "Disabled")
|
|
||||||
<< "\n";
|
|
||||||
|
|
||||||
// Determine rc.editor/$EDITOR/$VISUAL.
|
// Determine rc.editor/$EDITOR/$VISUAL.
|
||||||
char* peditor;
|
char* peditor;
|
||||||
if (context.config.get ("editor") != "")
|
if (context.config.get ("editor") != "")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue