summaryrefslogtreecommitdiff
path: root/Types
diff options
context:
space:
mode:
Diffstat (limited to 'Types')
-rw-r--r--Types/Command.hs2
-rw-r--r--Types/Messages.hs2
2 files changed, 3 insertions, 1 deletions
diff --git a/Types/Command.hs b/Types/Command.hs
index e12873850..aa22143dd 100644
--- a/Types/Command.hs
+++ b/Types/Command.hs
@@ -40,7 +40,7 @@ type CommandCleanup = Annex Bool
data Command = Command
{ cmdcheck :: [CommandCheck] -- check stage
, cmdnocommit :: Bool -- don't commit journalled state changes
- , cmdnomessages :: Bool -- don't output normal messages
+ , cmdnomessages :: Bool -- don't output normal messages
, cmdname :: String
, cmdparamdesc :: CmdParamsDesc -- description of params for usage
, cmdsection :: CommandSection
diff --git a/Types/Messages.hs b/Types/Messages.hs
index e8dbb8e89..f9e09ecd7 100644
--- a/Types/Messages.hs
+++ b/Types/Messages.hs
@@ -24,6 +24,7 @@ data SideActionBlock = NoBlock | StartBlock | InBlock
data MessageState = MessageState
{ outputType :: OutputType
, sideActionBlock :: SideActionBlock
+ , implicitMessages :: Bool
#ifdef WITH_CONCURRENTOUTPUT
, consoleRegion :: Maybe ConsoleRegion
, consoleRegionErrFlag :: Bool
@@ -35,6 +36,7 @@ instance Default MessageState
def = MessageState
{ outputType = NormalOutput
, sideActionBlock = NoBlock
+ , implicitMessages = True
#ifdef WITH_CONCURRENTOUTPUT
, consoleRegion = Nothing
, consoleRegionErrFlag = False