# HG changeset patch # User Jeremy Henty # Date 1283716537 -7200 # Node ID e8f48dbdea2a1b9f27db5ae21b080e0bbe1663e8 # Parent f4a6b351012d48158e32c88af87f1c8494b58b0f consistent screaming quotes diff -r f4a6b351012d -r e8f48dbdea2a src/cache.c --- a/src/cache.c Sun Aug 29 21:58:07 2010 -0400 +++ b/src/cache.c Sun Sep 05 21:55:37 2010 +0200 @@ -932,7 +932,7 @@ (entry->Flags & CA_ForceRedirect || entry->Flags & CA_TempRedirect || !entry->Data->len || entry->Data->len < 1024)) { - _MSG(">>>Redirect from: %s\n to %s\n", + _MSG(">>>> Redirect from: %s\n to %s <<<<\n", URL_STR_(entry->Url), URL_STR_(entry->Location)); _MSG("%s", entry->Header->str); @@ -946,9 +946,9 @@ } else { /* Sub entity redirection (most probably an image) */ if (!entry->Data->len) { - _MSG(">>>Image redirection without entity-content<<<\n"); + _MSG(">>>> Image redirection without entity-content <<<<\n"); } else { - _MSG(">>>Image redirection with entity-content<<<\n"); + _MSG(">>>> Image redirection with entity-content <<<<\n"); } } } diff -r f4a6b351012d -r e8f48dbdea2a src/nav.c --- a/src/nav.c Sun Aug 29 21:58:07 2010 -0400 +++ b/src/nav.c Sun Sep 05 21:55:37 2010 +0200 @@ -395,7 +395,7 @@ void a_Nav_repush(BrowserWindow *bw) { dReturn_if_fail (bw != NULL); - MSG(">>> a_Nav_repush <<<<\n"); + MSG(">>>> a_Nav_repush <<<<\n"); a_Timeout_add(0.0, Nav_repush_callback, (void*)bw); } @@ -424,7 +424,7 @@ void a_Nav_redirection0(BrowserWindow *bw, const DilloUrl *new_url) { dReturn_if_fail (bw != NULL); - _MSG(">>> a_Nav_redirection0 <<<<\n"); + _MSG(">>>> a_Nav_redirection0 <<<<\n"); a_Url_free(bw->meta_refresh_url); bw->meta_refresh_url = a_Url_dup(new_url);