mirror of
https://github.com/tmate-io/tmate.git
synced 2026-07-25 03:47:14 +00:00
Treat trying to link or move to the same window as an error to avoid
removing it accidentally.
This commit is contained in:
parent
8363e31953
commit
cc474b4ede
1 changed files with 1 additions and 1 deletions
|
|
@ -281,7 +281,7 @@ server_link_window(struct session *src, struct winlink *srcwl,
|
|||
dstwl = winlink_find_by_index(&dst->windows, dstidx);
|
||||
if (dstwl != NULL) {
|
||||
if (dstwl->window == srcwl->window)
|
||||
return (0);
|
||||
return (-1);
|
||||
if (killflag) {
|
||||
/*
|
||||
* Can't use session_detach as it will destroy session
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue