diff options
| author | Gerd Möllmann | 2024-10-05 18:55:18 +0200 |
|---|---|---|
| committer | Gerd Möllmann | 2024-10-05 18:55:18 +0200 |
| commit | beb5b77123619758c1def6b9f227fa7568516775 (patch) | |
| tree | 809e025df6a48b10f3022558f23840a8def6cbec /src/minibuf.c | |
| parent | 069ecc9c4c3709246a6ff50d09af418444d427c3 (diff) | |
| download | emacs-tty-child-frames.tar.gz emacs-tty-child-frames.zip | |
Preview from my branch on githubtty-child-frames
Diffstat (limited to 'src/minibuf.c')
| -rw-r--r-- | src/minibuf.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/minibuf.c b/src/minibuf.c index 1f94e0e650e..c8267045397 100644 --- a/src/minibuf.c +++ b/src/minibuf.c | |||
| @@ -913,7 +913,11 @@ read_minibuf (Lisp_Object map, Lisp_Object initial, Lisp_Object prompt, | |||
| 913 | XWINDOW (minibuf_window)->cursor.hpos = 0; | 913 | XWINDOW (minibuf_window)->cursor.hpos = 0; |
| 914 | XWINDOW (minibuf_window)->cursor.x = 0; | 914 | XWINDOW (minibuf_window)->cursor.x = 0; |
| 915 | XWINDOW (minibuf_window)->must_be_updated_p = true; | 915 | XWINDOW (minibuf_window)->must_be_updated_p = true; |
| 916 | update_frame (XFRAME (selected_frame), true, true); | 916 | struct frame *sf = XFRAME (selected_frame); |
| 917 | update_frame (sf, true, true); | ||
| 918 | if (is_tty_frame (sf)) | ||
| 919 | combine_updates_for_frame (sf, true, true); | ||
| 920 | |||
| 917 | #ifndef HAVE_NTGUI | 921 | #ifndef HAVE_NTGUI |
| 918 | flush_frame (XFRAME (XWINDOW (minibuf_window)->frame)); | 922 | flush_frame (XFRAME (XWINDOW (minibuf_window)->frame)); |
| 919 | #else | 923 | #else |