diff options
| author | Richard M. Stallman | 1994-05-23 20:09:33 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-05-23 20:09:33 +0000 |
| commit | 596122a77d73ea6efd11e29ba1ad2c721c9c5416 (patch) | |
| tree | e9596cba6a5530c766f236c38f86eb1845ed43e2 | |
| parent | e3998da17a69530b9b59cf1d1d86395a2eb7ad5d (diff) | |
| download | emacs-596122a77d73ea6efd11e29ba1ad2c721c9c5416.tar.gz emacs-596122a77d73ea6efd11e29ba1ad2c721c9c5416.zip | |
(window_loop): Fix test of dedicated flag in prev change.
| -rw-r--r-- | src/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 1274 | /* If this window is dedicated, and in a frame of its own, | 1274 | /* If this window is dedicated, and in a frame of its own, |
| 1275 | kill the frame. */ | 1275 | kill the frame. */ |
| 1276 | if (EQ (w, FRAME_ROOT_WINDOW (f)) | 1276 | if (EQ (w, FRAME_ROOT_WINDOW (f)) |
| 1277 | && XWINDOW (w)->dedicated | 1277 | && !NILP (XWINDOW (w)->dedicated) |
| 1278 | && other_visible_frames (f)) | 1278 | && other_visible_frames (f)) |
| 1279 | Fdelete_frame (WINDOW_FRAME (XWINDOW (w)), Qnil); | 1279 | Fdelete_frame (WINDOW_FRAME (XWINDOW (w)), Qnil); |
| 1280 | else | 1280 | else |