From 24ec46fc241b655bf91a4529fa164ae9703d4eb6 Mon Sep 17 00:00:00 2001
From: Ben Woolley <tautolog@gmail.com>
Date: Wed, 7 Jan 2015 15:41:07 -0800
Subject: Fix extra newline, and add -g where other switches are forwarded.

Signed-off-by: Christoph Lohmann <20h@r-36.net>
---
 surf.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

(limited to 'surf.c')

diff --git a/surf.c b/surf.c
index 6f71657..82cf822 100644
--- a/surf.c
+++ b/surf.c
@@ -957,9 +957,11 @@ newwindow(Client *c, const Arg *arg, gboolean noembed) {
 		cmd[i++] = "-b";
 	if(embed && !noembed) {
 		cmd[i++] = "-e";
-		snprintf(tmp, LENGTH(tmp), "%u\n", (int)embed);
+		snprintf(tmp, LENGTH(tmp), "%u", (int)embed);
 		cmd[i++] = tmp;
 	}
+	if(!allowgeolocation)
+		cmd[i++] = "-g";
 	if(!loadimages)
 		cmd[i++] = "-i";
 	if(kioskmode)
-- 
cgit v1.2.3