summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/misc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/misc')
-rwxr-xr-xcrawl-ref/source/misc/grep-mon.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/misc/grep-mon.pl b/crawl-ref/source/misc/grep-mon.pl
index cc61f233d9..cb3538768b 100755
--- a/crawl-ref/source/misc/grep-mon.pl
+++ b/crawl-ref/source/misc/grep-mon.pl
@@ -47,6 +47,6 @@ close(FILE);
my @mons = split(/^},/m, $content);
-my @matches = grep(/$ARGV[0]/, @mons);
+my @matches = grep(/$ARGV[0]/s, @mons);
print join("},", @matches) . "\n";