summaryrefslogtreecommitdiff
path: root/usr.bin/tmux/tmux.h
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@cvs.openbsd.org>2009-11-05 10:44:37 +0000
committerNicholas Marriott <nicm@cvs.openbsd.org>2009-11-05 10:44:37 +0000
commit6bd0b9032b505002e9925869b8385ba856693b94 (patch)
tree7adb1fc4cbfa03ac2ee4012215de0edef2233ae5 /usr.bin/tmux/tmux.h
parent099044743396f0352b01fc43f78006a07ec334a9 (diff)
Key flags are only used for initialisation so they are not needed in the main
tty_key struct.
Diffstat (limited to 'usr.bin/tmux/tmux.h')
-rw-r--r--usr.bin/tmux/tmux.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h
index 2148451bf78..5b42fce46d9 100644
--- a/usr.bin/tmux/tmux.h
+++ b/usr.bin/tmux/tmux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: tmux.h,v 1.171 2009/11/05 08:48:15 nicm Exp $ */
+/* $OpenBSD: tmux.h,v 1.172 2009/11/05 10:44:36 nicm Exp $ */
/*
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -939,10 +939,6 @@ struct tty_key {
int key;
char *string;
- int flags;
-#define TTYKEY_CTRL 0x1
-#define TTYKEY_RAW 0x2
-
RB_ENTRY(tty_key) entry;
};