summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/database.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-03-08 14:33:29 +0100
committerAdam Borowski <kilobyte@angband.pl>2012-03-08 17:49:54 +0100
commit49e003de603430e604a0775b3e6208971376088b (patch)
tree18c123ad6cc606acd43a5ac3a8be16f9c293ab60 /crawl-ref/source/database.cc
parent877884e2f8165ac21e2a1d68d444048132e26de5 (diff)
downloadcrawl-ref-49e003de603430e604a0775b3e6208971376088b.tar.gz
crawl-ref-49e003de603430e604a0775b3e6208971376088b.zip
Allow logically wrapped quotes as well.
None of them needed to be changed. There's ugliness: a quote that needs to be wrapped will not have its subsequent lines indented, but that's not a regressions as all current overlong lines exhibit this behaviour. Still, something to fix soon.
Diffstat (limited to 'crawl-ref/source/database.cc')
-rw-r--r--crawl-ref/source/database.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/database.cc b/crawl-ref/source/database.cc
index 9795b8db50..ce0828670b 100644
--- a/crawl-ref/source/database.cc
+++ b/crawl-ref/source/database.cc
@@ -688,7 +688,7 @@ std::string getQuoteString(const std::string &key)
if (!QuotesDB)
return ("");
- return _query_database(QuotesDB.get(), key, true, true);
+ return unwrap_desc(_query_database(QuotesDB.get(), key, true, true));
}
/////////////////////////////////////////////////////////////////////////////