aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Monnier2007-09-20 21:19:13 +0000
committerStefan Monnier2007-09-20 21:19:13 +0000
commitadc54316520b573602b353fc287c40178a646436 (patch)
treeef6fbf569308c4202c9fb67c6bfca76cc3c56cbd
parent89acb56d9525ab215b9cdb2470e965119a17aba7 (diff)
downloademacs-adc54316520b573602b353fc287c40178a646436.tar.gz
emacs-adc54316520b573602b353fc287c40178a646436.zip
(w32_delete_terminal): Use terminal->name as liveness status.
-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)
6331 6331
6332 /* Protect against recursive calls. Fdelete_frame in 6332 /* Protect against recursive calls. Fdelete_frame in
6333 delete_terminal calls us back when it deletes our last frame. */ 6333 delete_terminal calls us back when it deletes our last frame. */
6334 if (terminal->deleted) 6334 if (!terminal->name)
6335 return; 6335 return;
6336 6336
6337 BLOCK_INPUT; 6337 BLOCK_INPUT;