Key options were implemented as a number so these struct members are unused.

This commit is contained in:
Nicholas Marriott 2009-09-21 06:55:06 +00:00
parent 14ebcab5b0
commit c7a8db5543

2
tmux.h
View File

@ -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;