summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/util
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-02 05:09:28 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-04-02 05:09:28 +0000
commitb74b255c88a3729c372a4e749679768a017b0e50 (patch)
tree0e3be8a25abe590edb79290d93c162811f5edde6 /crawl-ref/source/util
parent21991bab9a94890f1ade317aaf7c5bf78d1a54a8 (diff)
downloadcrawl-ref-b74b255c88a3729c372a4e749679768a017b0e50.tar.gz
crawl-ref-b74b255c88a3729c372a4e749679768a017b0e50.zip
Increased lexer token cache to 100 tokens.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1182 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/util')
-rw-r--r--crawl-ref/source/util/levcomp.lpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/util/levcomp.lpp b/crawl-ref/source/util/levcomp.lpp
index 02ad9c2100..64d790017c 100644
--- a/crawl-ref/source/util/levcomp.lpp
+++ b/crawl-ref/source/util/levcomp.lpp
@@ -27,7 +27,7 @@ static void flush_free_queue(unsigned int max_allowed)
static void add_to_queue(const char *s)
{
free_queue.push(s);
- flush_free_queue(20);
+ flush_free_queue(100);
}
static void clean()