summaryrefslogtreecommitdiffstats
path: root/cmd-select-window.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2011-04-05 19:37:01 +0000
committerNicholas Marriott <nicm@openbsd.org>2011-04-05 19:37:01 +0000
commit5d519ba526feffb08003e2c11c7230a6f2cc1d9e (patch)
tree446bc8a565b04861e848231e7d25dd49b1c96d8f /cmd-select-window.c
parentf16ea60cc0eceeb1e0bd580129d99aff4423ec19 (diff)
Add a flag to cmd_find_session so that attach-session can prefer
unattached sessions when choosing the most recently used (if -t is not given). Suggested by claudio@.
Diffstat (limited to 'cmd-select-window.c')
-rw-r--r--cmd-select-window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-select-window.c b/cmd-select-window.c
index 0e1b9543..2e076ae9 100644
--- a/cmd-select-window.c
+++ b/cmd-select-window.c
@@ -102,7 +102,7 @@ cmd_select_window_exec(struct cmd *self, struct cmd_ctx *ctx)
last = 1;
if (next || previous || last) {
- s = cmd_find_session(ctx, args_get(args, 't'));
+ s = cmd_find_session(ctx, args_get(args, 't'), 0);
if (s == NULL)
return (-1);