]> git.eshelyaron.com Git - emacs.git/commit
Fix bug#64152 (Minibuffer sometimes goes "modal")
authorAlan Mackenzie <acm@muc.de>
Wed, 21 Jun 2023 14:23:14 +0000 (14:23 +0000)
committerAlan Mackenzie <acm@muc.de>
Wed, 21 Jun 2023 14:23:14 +0000 (14:23 +0000)
commit4ca371e9cc7178572cc25cbe47371c0075405ff7
treefcb790b0431b6a47739fc2644298676c28076306
parenta0ccf1859cc636998403c52cb25d5aaf43744d47
Fix bug#64152 (Minibuffer sometimes goes "modal")

In particular, when a frame has no minibuffer and is using that
of a different "normal" frame, C-x 5 o, etc., and GUI
operations fail.

Fix by partially reverting the commit from 2022-07-07 15:38:09
+0000 "Remove obscure, obsolete code from do_switch_frame".  As
a consequent change, also revert the commit from 2022-07-08
20:19:03 +0000 "Remove now unused parameter TRACK from
do_switch_frame".

* src/frame.c (do_switch_frame): Restore the TRACK parameter.
Restore the code which redirects the frame focus when a new
frame gets selected.

* src/frame.c (Fselect_frame, Fhandle_switch_frame)
(delete_frame)
* src/keyboard.c (quit_throw_to_read_char)
* src/lisp.h (do_switch_frame prototype)
* src/minibuf.c (read_minibuf_unwind)
* src/window.c (Fset_window_configuration): Restore the TRACK
argument to do_switch_frame.

* src/xterm.c (x_try_restore_frame): Add a zero TRACK argument
to do_switch_frame.
src/frame.c
src/keyboard.c
src/lisp.h
src/minibuf.c
src/window.c
src/xterm.c