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 { enum {
OPTIONS_STRING, OPTIONS_STRING,
OPTIONS_NUMBER, OPTIONS_NUMBER,
OPTIONS_KEY,
} type; } type;
union { union {
char *string; char *string;
long long number; long long number;
int key;
} value; } value;
SPLAY_ENTRY(options_entry) entry; SPLAY_ENTRY(options_entry) entry;