diff options
| author | Richard M. Stallman | 1995-08-06 21:15:09 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-08-06 21:15:09 +0000 |
| commit | 84faf44c96f3ab75f115636a2bab3d230b22f829 (patch) | |
| tree | af2e84dd3e610847a7440838a040fb2fe0ca95d6 /src | |
| parent | eeba65edc1e9588e0f9764e484440cb9bae98898 (diff) | |
| download | emacs-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.c | 7 |
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)) |