From 4e2345da9203a286ef688d14aabdcb29a98a4328 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Mon, 29 Dec 2003 18:59:15 +0000 Subject: [project @ 2003-12-29 18:59:15 by jmb] Comment out unnecessary call to cache_dump from html_process_data. Add Licence and relevant #include to tt2code. Stops the compiler moaning about no definition of unicode_transliterate. svn path=/import/netsurf/; revision=467 --- render/html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'render/html.c') diff --git a/render/html.c b/render/html.c index 769610798..8ecef8831 100644 --- a/render/html.c +++ b/render/html.c @@ -60,7 +60,7 @@ void html_process_data(struct content *c, char *data, unsigned long size) { unsigned long x; LOG(("content %s, size %lu", c->url, size)); - cache_dump(); + /*cache_dump();*/ c->data.html.source = xrealloc(c->data.html.source, c->data.html.length + size); memcpy(c->data.html.source + c->data.html.length, data, size); c->data.html.length += size; -- cgit v1.2.3