summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/util/makedb.pl
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-01-21 10:39:48 +0100
committerAdam Borowski <kilobyte@angband.pl>2010-01-21 10:39:48 +0100
commit138c8a952c608ff384e7352b72729f35fcfc315c (patch)
tree0d3b93d2c0d6a55b7c8d128b6d2b90f37eed02bc /crawl-ref/source/util/makedb.pl
parent3526973df9b10845d6c63e79cb2463631157b980 (diff)
downloadcrawl-ref-138c8a952c608ff384e7352b72729f35fcfc315c.tar.gz
crawl-ref-138c8a952c608ff384e7352b72729f35fcfc315c.zip
Whitespace fixes.
Diffstat (limited to 'crawl-ref/source/util/makedb.pl')
-rwxr-xr-xcrawl-ref/source/util/makedb.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/util/makedb.pl b/crawl-ref/source/util/makedb.pl
index 4e1c6597a7..0bf2c233e0 100755
--- a/crawl-ref/source/util/makedb.pl
+++ b/crawl-ref/source/util/makedb.pl
@@ -4,7 +4,7 @@ use DB_File;
open(TEXT,"../dat/descriptions.txt");
unlink("../dat/descriptions.db");
tie %descriptions, 'DB_File', "../dat/descriptions.db";
-
+
my $state = 0;
my $title = "";
my $entry = "";
@@ -36,7 +36,7 @@ while(<TEXT>) {
if (2 == $state) {
$entry .= $thisLine;
next;
- };
+ };
}
$descriptions{"$title"} = "$entry";