summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mpr.h
diff options
context:
space:
mode:
authorChris Oelmueller <chris.oelmueller@gmail.com>2013-11-28 10:12:47 +0100
committerNeil Moore <neil@s-z.org>2013-11-28 11:16:43 -0500
commit4f4079f8b06625a2b789c739a82de65dbcb7c375 (patch)
treefd547be5e67f19c93dd451910d8896a3609f0a67 /crawl-ref/source/mpr.h
parentd9dfa8fc9755fb0a4e8954c7eb94f32fe97b82e0 (diff)
downloadcrawl-ref-4f4079f8b06625a2b789c739a82de65dbcb7c375.tar.gz
crawl-ref-4f4079f8b06625a2b789c739a82de65dbcb7c375.zip
Rename mprnojoin to mpr_nojoin
For consistency with mpr_nocap, mpr_comma_separated_list and friends.
Diffstat (limited to 'crawl-ref/source/mpr.h')
-rw-r--r--crawl-ref/source/mpr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/mpr.h b/crawl-ref/source/mpr.h
index 78c3b91798..eb5f887d49 100644
--- a/crawl-ref/source/mpr.h
+++ b/crawl-ref/source/mpr.h
@@ -89,8 +89,8 @@ msg_colour_type msg_colour(int colour);
void mpr(string text, msg_channel_type channel=MSGCH_PLAIN, int param=0,
bool nojoin=false, bool cap=true);
-static inline void mprnojoin(string text, msg_channel_type channel=MSGCH_PLAIN,
- int param=0)
+static inline void mpr_nojoin(string text, msg_channel_type channel=MSGCH_PLAIN,
+ int param=0)
{
mpr(text, channel, param, true);
}