diff options
| author | Richard M. Stallman | 1994-01-09 15:20:21 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-01-09 15:20:21 +0000 |
| commit | 6b7b1820f0add3af9a301403db8adce92a408639 (patch) | |
| tree | b0a22bf8d3da5f13451edb2db4ee7094a2dd4355 /src | |
| parent | 0481133773bd3d93c48e6ec43be49cd9e28f42e5 (diff) | |
| download | emacs-6b7b1820f0add3af9a301403db8adce92a408639.tar.gz emacs-6b7b1820f0add3af9a301403db8adce92a408639.zip | |
(x_sync): New function.
Diffstat (limited to 'src')
| -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.") | |||
| 3724 | return Qnil; | 3724 | return Qnil; |
| 3725 | } | 3725 | } |
| 3726 | 3726 | ||
| 3727 | /* Wait for responses to all X commands issued so far for FRAME. */ | ||
| 3728 | |||
| 3729 | void | ||
| 3730 | x_sync (frame) | ||
| 3731 | Lisp_Object frame; | ||
| 3732 | { | ||
| 3733 | XSync (x_current_display, False); | ||
| 3734 | } | ||
| 3727 | 3735 | ||
| 3728 | syms_of_xfns () | 3736 | syms_of_xfns () |
| 3729 | { | 3737 | { |