mirror of
https://github.com/tmate-io/tmate.git
synced 2025-01-12 08:58:12 +01:00
Don't die if no dst window and -k to linkw.
This commit is contained in:
parent
65f4284e7f
commit
cea201df20
4
CHANGES
4
CHANGES
@ -1,5 +1,7 @@
|
|||||||
01 June 2008
|
01 June 2008
|
||||||
|
|
||||||
|
* Bug fix: don't die if -k passed to link-window and the destination doesn't
|
||||||
|
exist.
|
||||||
* New command, send-keys, will send a set of keys to a window.
|
* New command, send-keys, will send a set of keys to a window.
|
||||||
|
|
||||||
31 May 2008
|
31 May 2008
|
||||||
@ -314,4 +316,4 @@
|
|||||||
(including mutt, emacs). No status bar yet and no key remapping or other
|
(including mutt, emacs). No status bar yet and no key remapping or other
|
||||||
customisation.
|
customisation.
|
||||||
|
|
||||||
$Id: CHANGES,v 1.95 2008-06-01 20:20:25 nicm Exp $
|
$Id: CHANGES,v 1.96 2008-06-01 20:32:41 nicm Exp $
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $Id: cmd-link-window.c,v 1.9 2007-12-06 09:46:21 nicm Exp $ */
|
/* $Id: cmd-link-window.c,v 1.10 2008-06-01 20:32:41 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -138,6 +138,10 @@ cmd_link_window_exec(void *ptr, struct cmd_ctx *ctx)
|
|||||||
data->dstidx = -1;
|
data->dstidx = -1;
|
||||||
if (data->flag_kill && data->dstidx != -1) {
|
if (data->flag_kill && data->dstidx != -1) {
|
||||||
wl2 = winlink_find_by_index(&dst->windows, data->dstidx);
|
wl2 = winlink_find_by_index(&dst->windows, data->dstidx);
|
||||||
|
if (wl2 == NULL) {
|
||||||
|
ctx->error(ctx, "no window %d", data->dstidx);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Can't use session_detach as it will destroy session if this
|
* Can't use session_detach as it will destroy session if this
|
||||||
|
5
resize.c
5
resize.c
@ -1,4 +1,4 @@
|
|||||||
/* $Id: resize.c,v 1.9 2007-12-06 09:46:22 nicm Exp $ */
|
/* $Id: resize.c,v 1.10 2008-06-01 20:32:41 nicm Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -39,8 +39,7 @@
|
|||||||
*
|
*
|
||||||
* As a side effect, this function updates the SESSION_UNATTACHED flag. This
|
* As a side effect, this function updates the SESSION_UNATTACHED flag. This
|
||||||
* flag is necessary to make sure unattached sessions do not limit the size of
|
* flag is necessary to make sure unattached sessions do not limit the size of
|
||||||
* windows that are attached both to them and to other sessions which are
|
* windows that are attached both to them and to other (attached) sessions.
|
||||||
* attached.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user