aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1995-08-06 21:15:09 +0000
committerRichard M. Stallman1995-08-06 21:15:09 +0000
commit84faf44c96f3ab75f115636a2bab3d230b22f829 (patch)
treeaf2e84dd3e610847a7440838a040fb2fe0ca95d6 /src
parenteeba65edc1e9588e0f9764e484440cb9bae98898 (diff)
downloademacs-84faf44c96f3ab75f115636a2bab3d230b22f829.tar.gz
emacs-84faf44c96f3ab75f115636a2bab3d230b22f829.zip
(redisplay): Compute mini_frame the same way echo_area_display does.
Diffstat (limited to 'src')
-rw-r--r--src/xdisp.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 6a4b5dc34ac..bd1bdf5bcdb 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -1107,8 +1107,11 @@ update:
1107 above call to update_frame would not have caught it. Catch 1107 above call to update_frame would not have caught it. Catch
1108 it here. */ 1108 it here. */
1109 { 1109 {
1110 FRAME_PTR mini_frame 1110 Lisp_Object mini_window;
1111 = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window))); 1111 FRAME_PTR mini_frame;
1112
1113 mini_window = FRAME_MINIBUF_WINDOW (selected_frame);
1114 mini_frame = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
1112 1115
1113 if (mini_frame != selected_frame 1116 if (mini_frame != selected_frame
1114 && ! FRAME_TERMCAP_P (mini_frame)) 1117 && ! FRAME_TERMCAP_P (mini_frame))