mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-08 00:33:13 -08:00
* src/minibuf.c (move_minibuffer_onto_frame): Fix comparison
This commit is contained in:
parent
2ecbf4cfae
commit
5d0da63f00
1 changed files with 1 additions and 1 deletions
|
|
@ -142,7 +142,7 @@ void move_minibuffer_onto_frame (void)
|
|||
|
||||
set_window_buffer (sf->minibuffer_window, buffer, 0, 0);
|
||||
minibuf_window = sf->minibuffer_window;
|
||||
if (XWINDOW (minibuf_window)->frame == selected_frame)
|
||||
if (EQ (XWINDOW (minibuf_window)->frame, selected_frame))
|
||||
/* The minibuffer might be on another frame. */
|
||||
Fset_frame_selected_window (selected_frame, sf->minibuffer_window,
|
||||
Qnil);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue