Sync OpenBSD patchset 336:

Key options were implemented as a number so these struct members are unused.
This commit is contained in:
Tiago Cunha 2009-09-22 13:45:06 +00:00
parent 1572e483c2
commit c28d4e41cf

4
tmux.h
View File

@ -1,4 +1,4 @@
/* $Id: tmux.h,v 1.445 2009-09-20 22:20:10 tcunha Exp $ */ /* $Id: tmux.h,v 1.446 2009-09-22 13:45:06 tcunha Exp $ */
/* /*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@ -542,12 +542,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;