From 337aaf1fda9b1644910f966591438d76276ddfb5 Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Wed, 1 Sep 1999 13:37:07 +0000 Subject: [PATCH] (read_minibuf): Flush display after setting cursor to column 0. --- src/minibuf.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/minibuf.c b/src/minibuf.c index 3ad44c6b500..258ef3ea720 100644 --- a/src/minibuf.c +++ b/src/minibuf.c @@ -441,6 +441,8 @@ read_minibuf (map, initial, prompt, backup_n, expflag, XWINDOW (minibuf_window)->cursor.x = 0; XWINDOW (minibuf_window)->must_be_updated_p = 1; update_frame (selected_frame, 1, 1); + if (rif && rif->flush_display) + rif->flush_display (XFRAME (XWINDOW (minibuf_window)->frame)); } /* Make minibuffer contents into a string. */ -- 2.39.5