mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-11 14:01:43 -08:00
(message2_nolog): Handle minibuffer_auto_raise.
This commit is contained in:
parent
d3e81d0a9e
commit
b6436d4e83
1 changed files with 5 additions and 0 deletions
|
|
@ -45,6 +45,8 @@ extern int pending_menu_activation;
|
|||
extern int interrupt_input;
|
||||
extern int command_loop_level;
|
||||
|
||||
extern int minibuffer_auto_raise;
|
||||
|
||||
extern Lisp_Object Qface;
|
||||
|
||||
extern Lisp_Object Voverriding_local_map;
|
||||
|
|
@ -439,6 +441,9 @@ message2_nolog (m, len)
|
|||
{
|
||||
echo_area_glyphs = m;
|
||||
echo_area_glyphs_length = len;
|
||||
|
||||
if (minibuffer_auto_raise)
|
||||
Fraise_frame (WINDOW_FRAME (XWINDOW (mini_window)));
|
||||
}
|
||||
else
|
||||
echo_area_glyphs = previous_echo_glyphs = 0;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue