about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorMarco Peereboom <marco@conformal.com>2011-07-13 12:52:18 +0000
committerMarco Peereboom <marco@conformal.com>2011-07-13 12:52:18 +0000
commit9b4753021b4e97dc2dc90b9cd2453956adae7506 (patch)
tree65b3840931c037dd2da756949b1b8a9235eda2cd
parentec84809fd97677580027a398201153a92089ed7d (diff)
downloadxombrero-9b4753021b4e97dc2dc90b9cd2453956adae7506.tar.gz
stevan's spacebar is sometime brocken
-rw-r--r--xxxterm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/xxxterm.c b/xxxterm.c
index 378f7fa..5dd96dc 100644
--- a/xxxterm.c
+++ b/xxxterm.c
@@ -1486,7 +1486,7 @@ load_uri(struct tab *t, gchar *uri)
 		return;
 
 	/* Strip leading spaces. */
-	while(*uri && isspace(*uri))
+	while (*uri && isspace(*uri))
 		uri++;
 
 	if (strlen(uri) == 0) {
@@ -2368,7 +2368,7 @@ paste_uri(struct tab *t, struct karg *args)
 
 	if (p) {
 		uri = p;
-		while(*uri && isspace(*uri))
+		while (*uri && isspace(*uri))
 			uri++;
 		if (strlen(uri) == 0) {
 			show_oops(t, "empty paste buffer");