From adc54316520b573602b353fc287c40178a646436 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Thu, 20 Sep 2007 21:19:13 +0000 Subject: [PATCH] (w32_delete_terminal): Use terminal->name as liveness status. --- src/w32term.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/w32term.c b/src/w32term.c index e8d8cee7da7..23e2a7f8dac 100644 --- a/src/w32term.c +++ b/src/w32term.c @@ -6331,7 +6331,7 @@ x_delete_terminal (struct terminal *terminal) /* Protect against recursive calls. Fdelete_frame in delete_terminal calls us back when it deletes our last frame. */ - if (terminal->deleted) + if (!terminal->name) return; BLOCK_INPUT; -- 2.39.2