summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2003-07-15 14:37:34 +0000
committerJames Bursa <james@netsurf-browser.org>2003-07-15 14:37:34 +0000
commit5911578eaf4f8944ca13dc7bce90d3ed7ab35237 (patch)
tree083c1fae02da1a3e4a3e9d90d01a68669716e31e /content
parent613c7003e99806aa6d0c30df0d9f5f167dc5cae8 (diff)
downloadnetsurf-5911578eaf4f8944ca13dc7bce90d3ed7ab35237.tar.gz
netsurf-5911578eaf4f8944ca13dc7bce90d3ed7ab35237.tar.bz2
[project @ 2003-07-15 14:37:34 by bursa]
Implement html_redraw. svn path=/import/netsurf/; revision=218
Diffstat (limited to 'content')
-rw-r--r--content/content.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/content.c b/content/content.c
index 3b0ba7e77..2c7f5d00e 100644
--- a/content/content.c
+++ b/content/content.c
@@ -62,7 +62,7 @@ struct handler_entry {
};
static const struct handler_entry handler_map[] = {
{html_create, html_process_data, html_convert, html_revive,
- html_reformat, html_destroy, 0,
+ html_reformat, html_destroy, html_redraw,
html_add_instance, html_remove_instance, 0},
{textplain_create, textplain_process_data, textplain_convert,
textplain_revive, textplain_reformat, textplain_destroy, 0, 0, 0, 0},