From e4378d3d0c81e364bbfaa19ef20fdd958eb256b7 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Thu, 12 Feb 2009 09:51:47 +0000 Subject: add history navigation svn path=/trunk/netsurf/; revision=6451 --- framebuffer/history.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'framebuffer/history.c') diff --git a/framebuffer/history.c b/framebuffer/history.c index 64b56e56a..f81a98c3e 100644 --- a/framebuffer/history.c +++ b/framebuffer/history.c @@ -20,6 +20,13 @@ void global_history_add(const char *url) { + const struct url_data *data; + + data = urldb_get_url_data(url); + if (!data) + return; + + } void global_history_add_recent(const char *url) -- cgit v1.2.3