summaryrefslogtreecommitdiff
path: root/src/frame.h
diff options
context:
space:
mode:
authorAlan Mackenzie <acm@muc.de>2022-05-20 20:18:38 +0000
committerAlan Mackenzie <acm@muc.de>2022-05-20 20:18:38 +0000
commitdfa3e6f424b20fe27d9041b2ce7d69811df5d8cd (patch)
tree38c5c3805d73a53f58883ca6cd25e7e3b80d7fdd /src/frame.h
parentde35e9728f3d821e280b5c97c66f1ba8991cd700 (diff)
downloademacs-dfa3e6f424b20fe27d9041b2ce7d69811df5d8cd.tar.gz
emacs-dfa3e6f424b20fe27d9041b2ce7d69811df5d8cd.tar.bz2
emacs-dfa3e6f424b20fe27d9041b2ce7d69811df5d8cd.zip
Restore the Fselect_window call in gui_consider_frame_title.
This fixes bug #55412. The call to Fselect_window was removed on 2021-03-21 in the commit "Prevent open minibuffers getting lost when their frame gets deleted". This call is actually needed to determine current elements of the pertinent window and frame when these are used in the frame title. * src/frame.c (do_switch_frame): When the selected window in the target frame is the mini-window, switch away from this window unless there is a valid minibuffer there. * src/frame.h (struct frame): Add an incidental comment about the element selected_window. * src/minibuf.c (move_minibuffers_onto_frame): No longer set the selected window of the source frame. This action is now performed later, on returning to that frame, in do_switch_frame when needed (see above). * src/xdisp.c (gui_consider_frame_title): Replace the Fselect_window call and associated ancillary settings.
Diffstat (limited to 'src/frame.h')
-rw-r--r--src/frame.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/frame.h b/src/frame.h
index 0b8cdf62ded..cc0dae8f5ab 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -123,6 +123,7 @@ struct frame
/* This frame's selected window.
Each frame has its own window hierarchy
and one of the windows in it is selected within the frame.
+ This window may be the mini-window of the frame, if any.
The selected window of the selected frame is Emacs's selected window. */
Lisp_Object selected_window;