diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-10-11 23:38:16 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-10-11 23:38:16 +0000 |
commit | 6a1ebb11df452e570b430ba16192c38b0e3a0f90 (patch) | |
tree | f2165e41abebbb503f4f8feba689468128a96cf7 /cmd-link-window.c | |
parent | 1fd3a405e69c7478ab29d29cd56ac5b23f2f4f71 (diff) | |
download | rtmux-6a1ebb11df452e570b430ba16192c38b0e3a0f90.tar.gz rtmux-6a1ebb11df452e570b430ba16192c38b0e3a0f90.tar.bz2 rtmux-6a1ebb11df452e570b430ba16192c38b0e3a0f90.zip |
Sync OpenBSD patchset 371:
Add "grouped sessions" which have independent name, options, current window and
so on but where the linked windows are synchronized (ie creating, killing
windows and so on are mirrored between the sessions). A grouped session may be
created by passing -t to new-session.
Had this around for a while, tested by a couple of people.
Diffstat (limited to 'cmd-link-window.c')
-rw-r--r-- | cmd-link-window.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cmd-link-window.c b/cmd-link-window.c index 59a59109..0f55c82d 100644 --- a/cmd-link-window.c +++ b/cmd-link-window.c @@ -1,4 +1,4 @@ -/* $Id: cmd-link-window.c,v 1.34 2009-09-20 22:17:03 tcunha Exp $ */ +/* $Id: cmd-link-window.c,v 1.35 2009-10-11 23:38:16 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -43,19 +43,19 @@ int cmd_link_window_exec(struct cmd *self, struct cmd_ctx *ctx) { struct cmd_srcdst_data *data = self->data; - struct session *dst; + struct session *src, *dst; struct winlink *wl; char *cause; int idx, kflag, dflag; - if ((wl = cmd_find_window(ctx, data->src, NULL)) == NULL) + if ((wl = cmd_find_window(ctx, data->src, &src)) == NULL) return (-1); if ((idx = cmd_find_index(ctx, data->dst, &dst)) == -2) return (-1); kflag = data->chflags & CMD_CHFLAG('k'); dflag = data->chflags & CMD_CHFLAG('d'); - if (server_link_window(wl, dst, idx, kflag, !dflag, &cause) != 0) { + if (server_link_window(src, wl, dst, idx, kflag, !dflag, &cause) != 0) { ctx->error(ctx, "can't link window: %s", cause); xfree(cause); return (-1); |