mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-04-27 08:43:40 -07:00
* xterm.c (x_flush): Call XFlush once per each X display, not
frame. This is better because this code always unconditionally skips non-X frames in Vframe_list and issues the only XFlush if we have more than one X frame on the same X display.
This commit is contained in:
parent
c791c18e23
commit
1ca6cc28eb
2 changed files with 14 additions and 9 deletions
|
|
@ -3,6 +3,10 @@
|
|||
* xterm.c (last_mouse_press_frame): Remove the
|
||||
leftover which is not really used any more.
|
||||
(handle_one_xevent, syms_of_xterm): Adjust users.
|
||||
(x_flush): Call XFlush once per each X display, not frame.
|
||||
This is better because this code always unconditionally skips
|
||||
non-X frames in Vframe_list and issues the only XFlush if we
|
||||
have more than one X frame on the same X display.
|
||||
|
||||
2013-07-31 Dmitry Antipov <dmantipov@yandex.ru>
|
||||
|
||||
|
|
|
|||
19
src/xterm.c
19
src/xterm.c
|
|
@ -287,8 +287,6 @@ enum xembed_message
|
|||
XEMBED_ACTIVATE_ACCELERATOR = 14
|
||||
};
|
||||
|
||||
/* Used in x_flush. */
|
||||
|
||||
static bool x_alloc_nearest_color_1 (Display *, Colormap, XColor *);
|
||||
static void x_set_window_size_1 (struct frame *, int, int, int);
|
||||
static void x_raise_frame (struct frame *);
|
||||
|
|
@ -356,15 +354,18 @@ x_flush (struct frame *f)
|
|||
return;
|
||||
|
||||
block_input ();
|
||||
if (f == NULL)
|
||||
if (f)
|
||||
{
|
||||
Lisp_Object rest, frame;
|
||||
FOR_EACH_FRAME (rest, frame)
|
||||
if (FRAME_X_P (XFRAME (frame)))
|
||||
x_flush (XFRAME (frame));
|
||||
eassert (FRAME_X_P (f));
|
||||
XFlush (FRAME_X_DISPLAY (f));
|
||||
}
|
||||
else
|
||||
{
|
||||
/* Flush all displays and so all frames on them. */
|
||||
struct x_display_info *xdi;
|
||||
for (xdi = x_display_list; xdi; xdi = xdi->next)
|
||||
XFlush (xdi->display);
|
||||
}
|
||||
else if (FRAME_X_P (f))
|
||||
XFlush (FRAME_X_DISPLAY (f));
|
||||
unblock_input ();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue