diff options
author | Gerd Möllmann <gerd@gnu.org> | 2024-10-21 18:32:04 +0200 |
---|---|---|
committer | Gerd Möllmann <gerd@gnu.org> | 2024-10-22 06:40:19 +0200 |
commit | 414de92a562e8912ffdc8ed2995e7ea10d05f13b (patch) | |
tree | 9058dd00922ed14319e0e49eb216fcad7ea5fdd6 /src/minibuf.c | |
parent | 1854f2751e3f73e1e5f12f6de993b6357de1766b (diff) | |
download | emacs-414de92a562e8912ffdc8ed2995e7ea10d05f13b.tar.gz emacs-414de92a562e8912ffdc8ed2995e7ea10d05f13b.tar.bz2 emacs-414de92a562e8912ffdc8ed2995e7ea10d05f13b.zip |
Initial child frames based on master
This is based on a diff from 2024-10-15 which still applied.
Since then, I've inadvertantly modified the igc branch so that
it is no longer possible to get a clean diff of what has changed
since I created the branch.
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, XWINDOW (minibuf_window)->cursor.hpos = 0; XWINDOW (minibuf_window)->cursor.x = 0; XWINDOW (minibuf_window)->must_be_updated_p = true; - update_frame (XFRAME (selected_frame), true, true); + struct frame *sf = XFRAME (selected_frame); + update_frame (sf, true, true); + if (is_tty_frame (sf)) + combine_updates_for_frame (sf, true, true); + #ifndef HAVE_NTGUI flush_frame (XFRAME (XWINDOW (minibuf_window)->frame)); #else |