diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2018-07-30 11:24:56 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2018-07-30 11:24:56 +0000 |
commit | e384c32328267bb4fff5c6070304a4699bfaf0f1 (patch) | |
tree | e000ed485b90f86404a1d70d6988fea89e7f153e /usr.bin | |
parent | 6e0dd8f265b6e3fe8b435be5f20c92214d268643 (diff) |
Remove a leftover unused struct.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/tmux/tmux.h | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/usr.bin/tmux/tmux.h b/usr.bin/tmux/tmux.h index eeba3b4bede..e7fc04c88dc 100644 --- a/usr.bin/tmux/tmux.h +++ b/usr.bin/tmux/tmux.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tmux.h,v 1.829 2018/07/16 08:48:22 nicm Exp $ */ +/* $OpenBSD: tmux.h,v 1.830 2018/07/30 11:24:55 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -735,28 +735,6 @@ struct window_mode { }; #define WINDOW_MODE_TIMEOUT 180 -/* Structures for choose mode. */ -struct window_choose_data { - struct client *start_client; - struct session *start_session; - - u_int idx; - int type; -#define TREE_OTHER 0x0 -#define TREE_WINDOW 0x1 -#define TREE_SESSION 0x2 - - struct session *tree_session; /* session of items in tree */ - - struct winlink *wl; - int pane_id; - - char *ft_template; - struct format_tree *ft; - - char *command; -}; - /* Child window structure. */ struct window_pane { u_int id; |