mirror of
https://github.com/tmux/tmux.git
synced 2025-09-02 13:37:12 +00:00
Didn't mean to commit this stuff.
This commit is contained in:
9
server.c
9
server.c
@ -1,4 +1,4 @@
|
||||
/* $OpenBSD: server.c,v 1.23 2009/08/18 21:37:04 nicm Exp $ */
|
||||
/* $Id: server.c,v 1.172 2009-08-19 09:04:48 nicm Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||
@ -1109,12 +1109,13 @@ void
|
||||
server_check_window(struct window *w)
|
||||
{
|
||||
struct window_pane *wp, *wq;
|
||||
struct options *oo = &w->options;
|
||||
struct client *c;
|
||||
struct session *s;
|
||||
struct winlink *wl;
|
||||
u_int i, j;
|
||||
int destroyed;
|
||||
int destroyed, flag;
|
||||
|
||||
flag = options_get_number(&w->options, "remain-on-exit");
|
||||
|
||||
destroyed = 1;
|
||||
|
||||
@ -1127,7 +1128,7 @@ server_check_window(struct window *w)
|
||||
* the window to be destroyed (or it'll close when the last
|
||||
* pane dies).
|
||||
*/
|
||||
if (wp->fd == -1 && !options_get_number(oo, "remain-on-exit")) {
|
||||
if (wp->fd == -1 && !flag) {
|
||||
layout_close_pane(wp);
|
||||
window_remove_pane(w, wp);
|
||||
server_redraw_window(w);
|
||||
|
Reference in New Issue
Block a user