Don't segfault on force-window-update of deleted window
* src/window.c (Fforce_window_update): Do nothing for deleted windows (Bug#35784).
This commit is contained in:
parent
015b12ebb8
commit
122ba16890
1 changed files with 1 additions and 1 deletions
|
@ -3637,7 +3637,7 @@ displaying that buffer. */)
|
|||
return Qt;
|
||||
}
|
||||
|
||||
if (WINDOWP (object))
|
||||
if (WINDOW_LIVE_P (object))
|
||||
{
|
||||
struct window *w = XWINDOW (object);
|
||||
mark_window_display_accurate (object, false);
|
||||
|
|
Loading…
Add table
Reference in a new issue