aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2009-09-22 13:45:06 +0000
committerTiago Cunha <tcunha@gmx.com>2009-09-22 13:45:06 +0000
commitc28d4e41cf7ca243287975e9fb1212af140bc48d (patch)
tree3f945e815c4429a2651094b220a5fea15f798405
parent1572e483c22f0dc9889e90adccc5b3bfb4837343 (diff)
downloadrtmux-c28d4e41cf7ca243287975e9fb1212af140bc48d.tar.gz
rtmux-c28d4e41cf7ca243287975e9fb1212af140bc48d.tar.bz2
rtmux-c28d4e41cf7ca243287975e9fb1212af140bc48d.zip
Sync OpenBSD patchset 336:
Key options were implemented as a number so these struct members are unused.
-rw-r--r--tmux.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/tmux.h b/tmux.h
index da782eec..293e9ec0 100644
--- a/tmux.h
+++ b/tmux.h
@@ -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>
@@ -542,12 +542,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;