mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-08-29 17:07:19 +02:00
Context
- Verbose control bug fix which was caused by verbose=off due to a missing rc.verbose setting, then later comparison with the first token, which did not exist.
This commit is contained in:
parent
d53c432ff9
commit
ad0c349684
1 changed files with 1 additions and 1 deletions
|
@ -504,7 +504,7 @@ bool Context::verbose (const std::string& token)
|
||||||
|
|
||||||
// Regular feedback means almost everything.
|
// Regular feedback means almost everything.
|
||||||
if (!verbosity_legacy &&
|
if (!verbosity_legacy &&
|
||||||
verbosity.size () == 1 &&
|
verbosity.size () &&
|
||||||
verbosity[0] != "nothing" &&
|
verbosity[0] != "nothing" &&
|
||||||
verbosity[0] != "blank" && // This list must be complete.
|
verbosity[0] != "blank" && // This list must be complete.
|
||||||
verbosity[0] != "header" && //
|
verbosity[0] != "header" && //
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue