From 98991c1c1ad2c553cb77c7399523d5f7ddbc646a Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 5 Sep 2015 15:27:04 -0400 Subject: [PATCH] Command: Defaulted ::_uses_context to false, which is predominant setting MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - It's actually not yet predominant, but it looks like it will be. Since the introduction of the context feature, subsequent changes have been made to restrict it's influence. It appears that ultimately ゐt will only affect reports, but currently enjoys a broader scope. --- src/commands/Command.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/Command.cpp b/src/commands/Command.cpp index d27fc296b..a5bb64f58 100644 --- a/src/commands/Command.cpp +++ b/src/commands/Command.cpp @@ -220,7 +220,7 @@ Command::Command () , _displays_id (true) , _needs_confirm (false) , _needs_gc (true) -, _uses_context (true) +, _uses_context (false) , _accepts_filter (true) , _accepts_modifications (true) , _permission_quit (false)