Mercurial > dillo_port1.3
changeset 169:415dae0426e4
- Commented debug printf.
author | jcid |
---|---|
date | Wed, 09 Apr 2008 00:02:26 +0200 |
parents | 291457f05a9d |
children | 6d579cf5dbb2 |
files | src/nav.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/nav.c Tue Apr 08 23:07:48 2008 +0200 +++ b/src/nav.c Wed Apr 09 00:02:26 2008 +0200 @@ -215,14 +215,14 @@ /* 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); }