aboutsummaryrefslogtreecommitdiff
path: root/src/nav.c
diff options
context:
space:
mode:
authorJorge Arellano Cid <jcid@dillo.org>2009-02-15 16:04:56 -0300
committerJorge Arellano Cid <jcid@dillo.org>2009-02-15 16:04:56 -0300
commit14f136096ca28cba15da7521c798e27327f357d7 (patch)
tree986b4ccec042c21cf6dfdc04eb835c401415678d /src/nav.c
parent21ab6086012d25b3093b5da4407b9c8708ff416b (diff)
Fixed handling of META's content-type with no MIME type (e.g. only charset).
e.g. some links at http://git.kernel.org/gitweb.cgi didn't render. e.g. #2 This page didn't render: <html> <head> <meta http-equiv="content-type" content="; charset=utf-8"/> <title></title> </head> <body> Generating.... </body> </html>
Diffstat (limited to 'src/nav.c')
-rw-r--r--src/nav.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nav.c b/src/nav.c
index 1e184830..04e9705d 100644
--- a/src/nav.c
+++ b/src/nav.c
@@ -368,7 +368,7 @@ static void Nav_repush(BrowserWindow *bw)
static void Nav_repush_callback(void *data)
{
- _MSG(">>> Nav_repush_callback <<<<\n");
+ _MSG(">>>> Nav_repush_callback <<<<\n");
Nav_repush(data);
a_Timeout_remove();
}