diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2009-09-21 06:55:06 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2009-09-21 06:55:06 +0000 |
commit | c7a8db55438deae5214956cbba42a3833c8ec0c9 (patch) | |
tree | eab5daf611e183762299efe1b853c86fe9ad3749 /tmux.h | |
parent | 14ebcab5b016828c64c6d4564e50159f5dedf130 (diff) | |
download | rtmux-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.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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; |