summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/message.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/message.cc')
-rw-r--r--crawl-ref/source/message.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/message.cc b/crawl-ref/source/message.cc
index 998a402315..009a7d789f 100644
--- a/crawl-ref/source/message.cc
+++ b/crawl-ref/source/message.cc
@@ -604,7 +604,7 @@ static int prepare_message(const std::string& imsg, msg_channel_type channel,
= Options.message_colour_mappings;
typedef std::vector<message_colour_mapping>::const_iterator mcmci;
- for ( mcmci ci = mcm.begin(); ci != mcm.end(); ++ci )
+ for (mcmci ci = mcm.begin(); ci != mcm.end(); ++ci)
{
if (ci->message.is_filtered(channel, imsg))
{
@@ -613,7 +613,7 @@ static int prepare_message(const std::string& imsg, msg_channel_type channel,
}
}
- if ( colour != MSGCOL_MUTED )
+ if (colour != MSGCOL_MUTED)
{
mpr_check_patterns(imsg, channel, param);
flush_input_buffer( FLUSH_ON_MESSAGE );