From ea74834d6c554f314d7a7ef3b0887deffde8bddb Mon Sep 17 00:00:00 2001
From: Ben Woolley <tautolog@gmail.com>
Date: Tue, 24 Mar 2015 16:06:42 -0700
Subject: [PATCH 10/13] about:blank seems to not be needed for webkit, and
 makes a distinction without a difference, causing mismatches in URI
 comparison code.

---
 surf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/surf.c b/surf.c
index c2db21f..2c6cbd6 100644
--- a/surf.c
+++ b/surf.c
@@ -605,7 +605,7 @@ geturi(Client *c) {
 	char *uri;
 
 	if(!(uri = (char *)webkit_web_view_get_uri(c->view)))
-		uri = "about:blank";
+		uri = "";
 	return uri;
 }
 
-- 
2.2.2

