diff options
-rw-r--r-- | src/xfns.c | 8 |
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.") return Qnil; } +/* Wait for responses to all X commands issued so far for FRAME. */ + +void +x_sync (frame) + Lisp_Object frame; +{ + XSync (x_current_display, False); +} syms_of_xfns () { |