From: Richard M. Stallman Date: Mon, 23 May 1994 20:09:33 +0000 (+0000) Subject: (window_loop): Fix test of dedicated flag in prev change. X-Git-Tag: emacs-19.34~8190 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=596122a77d73ea6efd11e29ba1ad2c721c9c5416;p=emacs.git (window_loop): Fix test of dedicated flag in prev change. --- diff --git a/src/window.c b/src/window.c index 133229af5f6..89d9305ca33 100644 --- a/src/window.c +++ b/src/window.c @@ -1274,7 +1274,7 @@ window_loop (type, obj, mini, frames) /* If this window is dedicated, and in a frame of its own, kill the frame. */ if (EQ (w, FRAME_ROOT_WINDOW (f)) - && XWINDOW (w)->dedicated + && !NILP (XWINDOW (w)->dedicated) && other_visible_frames (f)) Fdelete_frame (WINDOW_FRAME (XWINDOW (w)), Qnil); else