From: Reginald Kennedy Date: Sun, 23 Sep 2012 10:39:06 +0000 (+0800) Subject: Remove unused global variable. X-Git-Url: https://jasonwoof.com/gitweb/?a=commitdiff_plain;h=df5c9f4c2211d9f0e9c67bbf19d4a3e2b6025bda;p=spectrwm.git Remove unused global variable. --- diff --git a/spectrwm.c b/spectrwm.c index 0020f39..9219f76 100644 --- a/spectrwm.c +++ b/spectrwm.c @@ -279,7 +279,6 @@ volatile sig_atomic_t restart_wm = 0; xcb_timestamp_t last_event_time = 0; int outputs = 0; int other_wm; -int ss_enabled = 0; int xrandr_support; int xrandr_eventbase; unsigned int numlockmask = 0; @@ -6622,9 +6621,10 @@ setconfvalue(char *selector, char *value, int flags) setconfspawn("spawn_term", value, 0); break; case SWM_S_SS_APP: + /* No longer needed; leave to not break old conf files. */ break; case SWM_S_SS_ENABLED: - ss_enabled = atoi(value); + /* No longer needed; leave to not break old conf files. */ break; case SWM_S_STACK_ENABLED: stack_enabled = atoi(value);