From 3ca201c42ae13fb6a1f80e63a00d2762ebcf95ec Mon Sep 17 00:00:00 2001 From: Raphael Khaiat Date: Wed, 23 Feb 2011 23:22:11 +0100 Subject: [PATCH] Delete deprecated option raiseswitch --- src/config.c | 1 - src/structs.h | 1 - 2 files changed, 2 deletions(-) diff --git a/src/config.c b/src/config.c index 68119c0..927f78e 100644 --- a/src/config.c +++ b/src/config.c @@ -156,7 +156,6 @@ conf_misc_section(void) conf.font = fetch_opt_first(sec, "sans-9", "font").str; conf.raisefocus = fetch_opt_first(sec, "false", "raisefocus").bool; - conf.raiseswitch = fetch_opt_first(sec, "false", "raiseswitch").bool; conf.focus_fmouse = fetch_opt_first(sec, "true", "focus_follow_mouse").bool; conf.focus_pclick = fetch_opt_first(sec, "true", "focus_pointer_click").bool; conf.status_timing = fetch_opt_first(sec, "1", "status_timing").num; diff --git a/src/structs.h b/src/structs.h index 0100c1f..7fbc820 100644 --- a/src/structs.h +++ b/src/structs.h @@ -381,7 +381,6 @@ typedef struct char *font; uint opacity; Bool raisefocus; - Bool raiseswitch; Bool focus_fmouse; Bool focus_pclick; Bool ignore_next_client_rules;