summaryrefslogtreecommitdiff
path: root/desktop/netsurf.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2005-07-11 18:10:10 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2005-07-11 18:10:10 +0000
commit46bc8ca1541d80b272e2ef0cbb499a4cb1bea659 (patch)
tree2d537ca9433defd576dfdf7a662b9e4ed729ca55 /desktop/netsurf.c
parentcfcc08137d844a35899bdaea3aa77052a7a4b11d (diff)
downloadnetsurf-46bc8ca1541d80b272e2ef0cbb499a4cb1bea659.tar.gz
netsurf-46bc8ca1541d80b272e2ef0cbb499a4cb1bea659.tar.bz2
[project @ 2005-07-11 18:10:10 by jmb]
Cache previous iconv conversion descriptor svn path=/import/netsurf/; revision=1792
Diffstat (limited to 'desktop/netsurf.c')
-rw-r--r--desktop/netsurf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/desktop/netsurf.c b/desktop/netsurf.c
index d0c2080ec..606774bf3 100644
--- a/desktop/netsurf.c
+++ b/desktop/netsurf.c
@@ -23,6 +23,7 @@
#endif
#include "netsurf/utils/log.h"
#include "netsurf/utils/url.h"
+#include "netsurf/utils/utf8.h"
#include "netsurf/utils/utils.h"
bool netsurf_quit = false;
@@ -73,6 +74,7 @@ void netsurf_init(int argc, char** argv)
"machine <%s>", utsname.sysname,
utsname.nodename, utsname.release,
utsname.version, utsname.machine));
+
lib_init();
url_init();
gui_init(argc, argv);
@@ -103,6 +105,7 @@ void netsurf_exit(void)
gui_quit();
content_quit();
fetch_quit();
+ utf8_finalise();
}