summaryrefslogtreecommitdiff
path: root/i3lock.c
diff options
context:
space:
mode:
authorMichael Stapelberg <michael@stapelberg.de>2012-01-03 21:01:16 +0000
committerMichael Stapelberg <michael@stapelberg.de>2012-01-03 21:01:16 +0000
commitf94fb9b5f8705065e0e7a244adce0f785ba700ee (patch)
tree55c237d924e004799e3f390a2002862e9ca27bfc /i3lock.c
parent6ea3fbdc213e7b9503cc6645e6fbc56c305166b9 (diff)
remove the dead variable modeswitchmask
Diffstat (limited to 'i3lock.c')
-rw-r--r--i3lock.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/i3lock.c b/i3lock.c
index b694f6e..604990e 100644
--- a/i3lock.c
+++ b/i3lock.c
@@ -49,7 +49,6 @@ static char password[512];
static bool modeswitch_active = false;
static bool iso_level3_shift_active = false;
static bool iso_level5_shift_active = false;
-static int modeswitchmask;
static int numlockmask;
static bool beep = false;
static bool debug_mode = false;
@@ -381,7 +380,6 @@ static void handle_visibility_notify(xcb_visibility_notify_event_t *event) {
static void handle_mapping_notify(xcb_mapping_notify_event_t *event) {
xcb_refresh_keyboard_mapping(symbols, event);
- modeswitchmask = get_mod_mask(conn, symbols, XK_Mode_switch);
numlockmask = get_mod_mask(conn, symbols, XK_Num_Lock);
}
@@ -687,7 +685,6 @@ int main(int argc, char *argv[]) {
grab_pointer_and_keyboard(conn, screen, cursor);
symbols = xcb_key_symbols_alloc(conn);
- modeswitchmask = get_mod_mask(conn, symbols, XK_Mode_switch);
numlockmask = get_mod_mask(conn, symbols, XK_Num_Lock);
if (dpms)