From c7a8db55438deae5214956cbba42a3833c8ec0c9 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Mon, 21 Sep 2009 06:55:06 +0000 Subject: [PATCH] Key options were implemented as a number so these struct members are unused. --- tmux.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/tmux.h b/tmux.h index 6a453c1b..b69621d6 100644 --- a/tmux.h +++ b/tmux.h @@ -544,12 +544,10 @@ struct options_entry { enum { OPTIONS_STRING, OPTIONS_NUMBER, - OPTIONS_KEY, } type; union { char *string; long long number; - int key; } value; SPLAY_ENTRY(options_entry) entry;