about summary refs log tree commit diff stats
path: root/settings.c
diff options
context:
space:
mode:
Diffstat (limited to 'settings.c')
-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