diff options
author | 2011-04-05 19:37:01 +0000 | |
---|---|---|
committer | 2011-04-05 19:37:01 +0000 | |
commit | 2ff59e8b4382aa1143fe52b69f8e5ae31c08eb4a (patch) | |
tree | a3dbcec3c66b9ea5944bf577d917d7a4263147c5 /usr.bin/tmux/cmd-set-option.c | |
parent | regen (diff) | |
download | wireguard-openbsd-2ff59e8b4382aa1143fe52b69f8e5ae31c08eb4a.tar.xz wireguard-openbsd-2ff59e8b4382aa1143fe52b69f8e5ae31c08eb4a.zip |
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 'usr.bin/tmux/cmd-set-option.c')
-rw-r--r-- | usr.bin/tmux/cmd-set-option.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-set-option.c b/usr.bin/tmux/cmd-set-option.c index d96eeb71388..64508b3027f 100644 --- a/usr.bin/tmux/cmd-set-option.c +++ b/usr.bin/tmux/cmd-set-option.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-set-option.c,v 1.50 2011/03/29 21:09:13 nicm Exp $ */ +/* $OpenBSD: cmd-set-option.c,v 1.51 2011/04/05 19:37:01 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -164,7 +164,7 @@ cmd_set_option_exec(struct cmd *self, struct cmd_ctx *ctx) if (args_has(self->args, 'g')) oo = &global_s_options; else { - s = cmd_find_session(ctx, args_get(args, 't')); + s = cmd_find_session(ctx, args_get(args, 't'), 0); if (s == NULL) return (-1); oo = &s->options; |