Didn't mean to commit this stuff.

This commit is contained in:
Nicholas Marriott
2009-08-19 09:04:48 +00:00
parent 620402a833
commit 11f0f812c5
4 changed files with 15 additions and 16 deletions

View File

@ -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);