From 5f143bee4933b6beecf819ba7d11b310698c6167 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Wed, 21 May 2014 20:22:38 -0400 Subject: [PATCH] Context - Found another case where an empty verbosity token list was being examined. --- src/Context.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Context.cpp b/src/Context.cpp index 0a6ec7843..4cbb88b63 100644 --- a/src/Context.cpp +++ b/src/Context.cpp @@ -533,7 +533,8 @@ bool Context::verbose (const std::string& token) return true; // rc.verbose=nothing overrides all. - if (verbosity[0] == "nothing") + if (verbosity.size () == 1 && + verbosity[0] == "nothing") return false; // Specific token match.