aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJim Blandy1992-09-29 13:25:14 +0000
committerJim Blandy1992-09-29 13:25:14 +0000
commit629a12cfeff16a5e6b6d1e5f400c0a07e5cff385 (patch)
treec9aadb61cb0ef600b817ec5d108a6d9ce27fa10a /src
parent960fa1fa4389ab2ff008d4d72b80cbe2d26a3026 (diff)
downloademacs-629a12cfeff16a5e6b6d1e5f400c0a07e5cff385.tar.gz
emacs-629a12cfeff16a5e6b6d1e5f400c0a07e5cff385.zip
* frame.c (Fdelete_frame): Call Fselect_frame with the appropriate
number of arguments.
Diffstat (limited to 'src')
-rw-r--r--src/frame.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c
index be70034f1d8..6a96ba3ea11 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -587,7 +587,7 @@ A frame may not be deleted if its minibuffer is used by other frames.")
587 587
588 /* Don't let the frame remain selected. */ 588 /* Don't let the frame remain selected. */
589 if (f == selected_frame) 589 if (f == selected_frame)
590 Fselect_frame (next_frame (frame, Qt)); 590 Fselect_frame (next_frame (frame, Qt), Qnil);
591 591
592 /* Don't allow minibuf_window to remain on a deleted frame. */ 592 /* Don't allow minibuf_window to remain on a deleted frame. */
593 if (EQ (f->minibuffer_window, minibuf_window)) 593 if (EQ (f->minibuffer_window, minibuf_window))