summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/chardump.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/chardump.cc')
-rw-r--r--crawl-ref/source/chardump.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/crawl-ref/source/chardump.cc b/crawl-ref/source/chardump.cc
index a1c9eb1901..7c80b9067e 100644
--- a/crawl-ref/source/chardump.cc
+++ b/crawl-ref/source/chardump.cc
@@ -928,7 +928,11 @@ static void sdump_kills(const std::string &, std::string & text)
static void sdump_overview(const std::string&, std::string& text)
{
- text += formatted_string::parse_string(overview_description_string());
+ std::string overview =
+ formatted_string::parse_string(overview_description_string());
+ trim_string(overview);
+ text += overview;
+ text += "\n\n";
}
static void sdump_mutations(const std::string &, std::string & text)