From e3440e017dead90510f81fbde5323a1c8e91173d Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 19 Sep 2007 15:16:23 +0000 Subject: Don't renumber on close. --- window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'window.c') diff --git a/window.c b/window.c index 5052b4e2..66c98f48 100644 --- a/window.c +++ b/window.c @@ -1,4 +1,4 @@ -/* $Id: window.c,v 1.4 2007-08-27 11:41:00 nicm Exp $ */ +/* $Id: window.c,v 1.5 2007-09-19 15:16:23 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott @@ -158,7 +158,7 @@ window_remove(struct windows *ww, struct window *w) if (window_index(ww, w, &i) != 0) fatalx("window not found"); - ARRAY_REMOVE(ww, i); + ARRAY_SET(ww, i, NULL); w->references--; if (w->references == 0) { -- cgit