about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorJosh Rickmar <jrick@devio.us>2012-05-07 10:12:39 -0400
committerJosh Rickmar <jrick@devio.us>2012-05-07 10:12:39 -0400
commit908ab6557a8de6c98d8bde283cf239f9e79b96c5 (patch)
tree5a20a4987f1b0e6888aecfdfe09d07594a2ceb52
parentf269f7c5ddde38e33b1d313641da04c83503ae54 (diff)
downloadxombrero-908ab6557a8de6c98d8bde283cf239f9e79b96c5.tar.gz
Why are these spaces? Fix with tabs
-rw-r--r--settings.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/settings.c b/settings.c
index d02b315..6e2a49d 100644
--- a/settings.c
+++ b/settings.c
@@ -1101,17 +1101,17 @@ set_auto_load_images(char *value)
 int
 set_enable_autoscroll(char *value)
 {
-        struct tab              *t;
- 
-        enable_autoscroll = atoi(value);
-        if (enable_autoscroll) {
-                TAILQ_FOREACH(t, &tabs, entry) {
-                        run_script(t, JS_AUTOSCROLL);
-                }
-        } else {
+	struct tab              *t;
+
+	enable_autoscroll = atoi(value);
+	if (enable_autoscroll) {
+		TAILQ_FOREACH(t, &tabs, entry) {
+			run_script(t, JS_AUTOSCROLL);
+		}
+	} else {
 		/* XXX: kill the script if running */
 	}
-        return (0);
+	return (0);
 }
 
 int