aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann1999-09-01 13:37:07 +0000
committerGerd Moellmann1999-09-01 13:37:07 +0000
commit337aaf1fda9b1644910f966591438d76276ddfb5 (patch)
tree825d9b479925e20dc11c011d2f3614b391ee4415 /src
parent84e7cd782a45b2af9c0528fc42dc456fed3570d0 (diff)
downloademacs-337aaf1fda9b1644910f966591438d76276ddfb5.tar.gz
emacs-337aaf1fda9b1644910f966591438d76276ddfb5.zip
(read_minibuf): Flush display after setting cursor to
column 0.
Diffstat (limited to 'src')
-rw-r--r--src/minibuf.c2
1 files changed, 2 insertions, 0 deletions
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,
441 XWINDOW (minibuf_window)->cursor.x = 0; 441 XWINDOW (minibuf_window)->cursor.x = 0;
442 XWINDOW (minibuf_window)->must_be_updated_p = 1; 442 XWINDOW (minibuf_window)->must_be_updated_p = 1;
443 update_frame (selected_frame, 1, 1); 443 update_frame (selected_frame, 1, 1);
444 if (rif && rif->flush_display)
445 rif->flush_display (XFRAME (XWINDOW (minibuf_window)->frame));
444 } 446 }
445 447
446 /* Make minibuffer contents into a string. */ 448 /* Make minibuffer contents into a string. */