diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-09-21 06:55:07 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2009-09-21 06:55:07 +0000 |
commit | c3047b68979eabf890fad2418b690db5736b95bc (patch) | |
tree | 8739ee8fb5dad04632f8f657d7f3b86d57d46c53 /usr.bin | |
parent | 589094fb03e193645afdbadeb6cc7ce5e81328b3 (diff) |
Key options were implemented as a number so these struct members are unused.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/tmux/tmux.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index 2377d6e3200..46899bbf1c4 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.107 2009/09/20 19:15:02 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.108 2009/09/21 06:55:06 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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; |