summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjcid <devnull@localhost>2008-04-09 00:02:26 +0200
committerjcid <devnull@localhost>2008-04-09 00:02:26 +0200
commit0f00dd8107866c46e56afac8c3cc4939509e264b (patch)
treef856ad4ccaf2db97e4c842331460ef394e61043b
parent8a7b0f048051fbb82e11915b51b90ccf6d927555 (diff)
- Commented debug printf.
-rw-r--r--src/nav.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nav.c b/src/nav.c
index fe59cf3b..621c81aa 100644
--- a/src/nav.c
+++ b/src/nav.c
@@ -215,14 +215,14 @@ 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: old_url='%s' idx=%d\n", URL_STR(old_url), idx);
+ _MSG("Nav_open_url: old_url='%s' idx=%d\n", URL_STR(old_url), idx);
/* Record current scrolling position */
if (URL_FLAGS(url) & URL_ReloadFromCache) {
/* Repush operation, don't change scroll position */
} else if (old_url) {
a_UIcmd_get_scroll_xy(bw, &x, &y);
Nav_save_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);
}