diff options
author | 2014-01-09 14:20:55 +0000 | |
---|---|---|
committer | 2014-01-09 14:20:55 +0000 | |
commit | 39b61e34c1a560d28fe3ec02c96997d6a1b0d92d (patch) | |
tree | 98e6a9fdf896beb1f42a36b189e04defc3ec23e2 /usr.bin/tmux/cmd.c | |
parent | Three small changes from Tiago Cunha: (diff) | |
download | wireguard-openbsd-39b61e34c1a560d28fe3ec02c96997d6a1b0d92d.tar.xz wireguard-openbsd-39b61e34c1a560d28fe3ec02c96997d6a1b0d92d.zip |
Allow attach-session -t to accept a window and pane to select them on
attach. Based on a diff from J Raynor.
Diffstat (limited to 'usr.bin/tmux/cmd.c')
-rw-r--r-- | usr.bin/tmux/cmd.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/tmux/cmd.c b/usr.bin/tmux/cmd.c index 026c5e584c2..4d77dc3aca9 100644 --- a/usr.bin/tmux/cmd.c +++ b/usr.bin/tmux/cmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.c,v 1.89 2013/10/10 12:29:35 nicm Exp $ */ +/* $OpenBSD: cmd.c,v 1.90 2014/01/09 14:20:55 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -126,9 +126,7 @@ struct session *cmd_lookup_session(const char *, int *); struct session *cmd_lookup_session_id(const char *); struct winlink *cmd_lookup_window(struct session *, const char *, int *); int cmd_lookup_index(struct session *, const char *, int *); -struct window_pane *cmd_lookup_paneid(const char *); struct winlink *cmd_lookup_winlink_windowid(struct session *, const char *); -struct window *cmd_lookup_windowid(const char *); struct session *cmd_window_session(struct cmd_q *, struct window *, struct winlink **); struct winlink *cmd_find_window_offset(const char *, struct session *, int *); |