aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-01-09 15:20:21 +0000
committerRichard M. Stallman1994-01-09 15:20:21 +0000
commit6b7b1820f0add3af9a301403db8adce92a408639 (patch)
treeb0a22bf8d3da5f13451edb2db4ee7094a2dd4355 /src
parent0481133773bd3d93c48e6ec43be49cd9e28f42e5 (diff)
downloademacs-6b7b1820f0add3af9a301403db8adce92a408639.tar.gz
emacs-6b7b1820f0add3af9a301403db8adce92a408639.zip
(x_sync): New function.
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/xfns.c b/src/xfns.c
index d42d79dd317..035d20c1d01 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -3724,6 +3724,14 @@ easier.")
3724 return Qnil; 3724 return Qnil;
3725} 3725}
3726 3726
3727/* Wait for responses to all X commands issued so far for FRAME. */
3728
3729void
3730x_sync (frame)
3731 Lisp_Object frame;
3732{
3733 XSync (x_current_display, False);
3734}
3727 3735
3728syms_of_xfns () 3736syms_of_xfns ()
3729{ 3737{