summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/menu.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/menu.cc')
-rw-r--r--crawl-ref/source/menu.cc2
1 files changed, 0 insertions, 2 deletions
diff --git a/crawl-ref/source/menu.cc b/crawl-ref/source/menu.cc
index 35e054f0d9..74e0044e4c 100644
--- a/crawl-ref/source/menu.cc
+++ b/crawl-ref/source/menu.cc
@@ -1218,13 +1218,11 @@ void print_formatted_paragraph(std::string &s, int maxcol, int channel)
{
if (s[loc] == '\n') {
text = s.substr(oldloc, loc-oldloc);
-// formatted_mpr( formatted_string::parse_string(text), channel );
formatted_message_history( text, channel );
oldloc = ++loc;
}
loc++;
}
-// formatted_mpr( formatted_string::parse_string( s.substr(oldloc, loc-oldloc) ), channel );
formatted_message_history( s.substr(oldloc, loc-oldloc), channel );
}