]> git.eshelyaron.com Git - emacs.git/commitdiff
(redisplay): Compute mini_frame the same way echo_area_display does.
authorRichard M. Stallman <rms@gnu.org>
Sun, 6 Aug 1995 21:15:09 +0000 (21:15 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 6 Aug 1995 21:15:09 +0000 (21:15 +0000)
src/xdisp.c

index 6a4b5dc34ac8d3a8a5ece8339d95372e74db61b9..bd1bdf5bcdbb826947fe994c357b09815099ac82 100644 (file)
@@ -1107,8 +1107,11 @@ update:
         above call to update_frame would not have caught it.  Catch
         it here.  */
       {
-       FRAME_PTR mini_frame
-         = XFRAME (WINDOW_FRAME (XWINDOW (minibuf_window)));
+       Lisp_Object mini_window;
+       FRAME_PTR mini_frame;
+
+       mini_window = FRAME_MINIBUF_WINDOW (selected_frame);
+       mini_frame = XFRAME (WINDOW_FRAME (XWINDOW (mini_window)));
        
        if (mini_frame != selected_frame
            && ! FRAME_TERMCAP_P (mini_frame))