aboutsummaryrefslogtreecommitdiff
path: root/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2009-09-21 06:55:06 +0000
committerNicholas Marriott <nicm@openbsd.org>2009-09-21 06:55:06 +0000
commitc7a8db55438deae5214956cbba42a3833c8ec0c9 (patch)
treeeab5daf611e183762299efe1b853c86fe9ad3749 /tmux.h
parent14ebcab5b016828c64c6d4564e50159f5dedf130 (diff)
downloadrtmux-c7a8db55438deae5214956cbba42a3833c8ec0c9.tar.gz
rtmux-c7a8db55438deae5214956cbba42a3833c8ec0c9.tar.bz2
rtmux-c7a8db55438deae5214956cbba42a3833c8ec0c9.zip
Key options were implemented as a number so these struct members are unused.
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h2
1 files changed, 0 insertions, 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;