diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-09-20 21:19:13 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2007-09-20 21:19:13 +0000 |
commit | adc54316520b573602b353fc287c40178a646436 (patch) | |
tree | ef6fbf569308c4202c9fb67c6bfca76cc3c56cbd /src | |
parent | 89acb56d9525ab215b9cdb2470e965119a17aba7 (diff) | |
download | emacs-adc54316520b573602b353fc287c40178a646436.tar.gz |
(w32_delete_terminal): Use terminal->name as liveness status.
Diffstat (limited to 'src')
-rw-r--r-- | src/w32term.c | 2 |
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; |