summaryrefslogtreecommitdiff
path: root/src/minibuf.c
diff options
context:
space:
mode:
authorAlan Mackenzie <acm@muc.de>2021-05-15 11:49:49 +0000
committerAlan Mackenzie <acm@muc.de>2021-05-15 11:49:49 +0000
commit46e4704e2abca4d264a43965f92eab7608211ee6 (patch)
treeb35eaa232a825db17afc2ba9c9672fda4fa72ced /src/minibuf.c
parent248ec838aa8b1a720a05b422be760f6ab32aa630 (diff)
downloademacs-46e4704e2abca4d264a43965f92eab7608211ee6.tar.gz
emacs-46e4704e2abca4d264a43965f92eab7608211ee6.tar.bz2
emacs-46e4704e2abca4d264a43965f92eab7608211ee6.zip
Miscellaneous corrections to src/minibuf.c for bug #48337
* src/minibuf.c (read_minibuf): Call get_minibuffer before incrementing minibuf_level, in case a hook function calls Factive_minibuffer_window. (init_minibuf_once_for_pdumper): Create *Minibuf-0* here (moved from init_minibuf_once), and set its mode, so that clicking in the mini-window immediately after start up works (thanks, Eli Z.).
Diffstat (limited to 'src/minibuf.c')
-rw-r--r--src/minibuf.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index 428998a639b..b40d1fbafc8 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -653,11 +653,12 @@ read_minibuf (Lisp_Object map, Lisp_Object initial, Lisp_Object prompt,
return unbind_to (count, val);
}
- minibuf_level++; /* Before calling choose_minibuf_frame. */
- /* Ensure now that the latest minibuffer has been created, in case
- anything happens which depends on MINNIBUF_LEVEL and
- Vminibuffer_list being consistent with eachother. */
- minibuffer = get_minibuffer (minibuf_level);
+ /* Ensure now that the latest minibuffer has been created and pushed
+ onto Vminibuffer_list before incrementing minibuf_level, in case
+ a hook called during the minibuffer creation calls
+ Factive_minibuffer_window. */
+ minibuffer = get_minibuffer (minibuf_level + 1);
+ minibuf_level++; /* Before calling choose_minibuf_frame. */
/* Choose the minibuffer window and frame, and take action on them. */
@@ -2278,8 +2279,6 @@ init_minibuf_once (void)
staticpro (&Vminibuffer_list);
staticpro (&Vcommand_loop_level_list);
pdumper_do_now_and_after_load (init_minibuf_once_for_pdumper);
- /* Ensure our inactive minibuffer exists. */
- get_minibuffer (0);
}
static void
@@ -2297,6 +2296,9 @@ init_minibuf_once_for_pdumper (void)
minibuf_prompt = Qnil;
minibuf_save_list = Qnil;
last_minibuf_string = Qnil;
+ /* Ensure our inactive minibuffer exists. */
+ Lisp_Object minibuf = get_minibuffer (0);
+ set_minibuffer_mode (minibuf, 0);
}
void