summaryrefslogtreecommitdiff
path: root/src/w32term.c
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2007-09-20 21:19:13 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2007-09-20 21:19:13 +0000
commitadc54316520b573602b353fc287c40178a646436 (patch)
treeef6fbf569308c4202c9fb67c6bfca76cc3c56cbd /src/w32term.c
parent89acb56d9525ab215b9cdb2470e965119a17aba7 (diff)
downloademacs-adc54316520b573602b353fc287c40178a646436.tar.gz
(w32_delete_terminal): Use terminal->name as liveness status.
Diffstat (limited to 'src/w32term.c')
-rw-r--r--src/w32term.c2
1 files changed, 1 insertions, 1 deletions
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;