summaryrefslogtreecommitdiff
path: root/src/nav.c
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2007-11-03 21:31:59 +0100
committerjcid <devnull@localhost>2007-11-03 21:31:59 +0100
commite6dfd06634d9d7930585b920bdaea62f0ac4c92d (patch)
treefd2e701b2fc41779d97d911ccf81509cba9ee3dc /src/nav.c
parent0774029d6efaf8e6bd8fe2fd095070123322dfe2 (diff)
Fixed following image links after loading the image.
Diffstat (limited to 'src/nav.c')
-rw-r--r--src/nav.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nav.c b/src/nav.c
index cb57f868..1abd1844 100644
--- a/src/nav.c
+++ b/src/nav.c
@@ -189,12 +189,12 @@ static void Nav_open_url(BrowserWindow *bw, const DilloUrl *url, int offset)
/* Get the url of the current page */
idx = a_Nav_stack_ptr(bw);
old_url = a_History_get_url(NAV_UIDX(bw, idx));
- MSG("Nav_open_url: idx=%d old_url='%s'\n", idx, URL_STR(old_url));
+ _MSG("Nav_open_url: idx=%d old_url='%s'\n", idx, URL_STR(old_url));
/* Record current scrolling position */
if (old_url) {
a_UIcmd_get_scroll_xy(bw, &x, &y);
Nav_set_scroll_pos(bw, idx, x, y);
- MSG("Nav_open_url: saved scroll of '%s' at x=%d y=%d\n",
+ _MSG("Nav_open_url: saved scroll of '%s' at x=%d y=%d\n",
URL_STR(old_url), x, y);
}
@@ -279,7 +279,7 @@ void a_Nav_expect_done(BrowserWindow *bw)
/* Scroll to were we were in this page */
Nav_get_scroll_pos(bw, &posx, &posy);
a_UIcmd_set_scroll_xy(bw, posx, posy);
- MSG("Nav: expect_done scrolling to x=%d y=%d\n", posx, posy);
+ _MSG("Nav: expect_done scrolling to x=%d y=%d\n", posx, posy);
}
Nav_stack_clean(bw);
a_UIcmd_set_buttons_sens(bw);