diff options
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)) |