aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1994-01-10 22:37:42 +0000
committerRichard M. Stallman1994-01-10 22:37:42 +0000
commit4e87f4d2ad776e2fb2df550b65f362fb9cd4ab77 (patch)
treea97752ed0b490610ce9d60f398d11fb03e514093 /src
parent4c0dc722280ebefb0921c178a2e80aeb219038a4 (diff)
downloademacs-4e87f4d2ad776e2fb2df550b65f362fb9cd4ab77.tar.gz
emacs-4e87f4d2ad776e2fb2df550b65f362fb9cd4ab77.zip
(x_sync): Block input.
Diffstat (limited to 'src')
-rw-r--r--src/xfns.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xfns.c b/src/xfns.c
index 035d20c1d01..99373481b54 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -3730,7 +3730,9 @@ void
3730x_sync (frame) 3730x_sync (frame)
3731 Lisp_Object frame; 3731 Lisp_Object frame;
3732{ 3732{
3733 BLOCK_INPUT;
3733 XSync (x_current_display, False); 3734 XSync (x_current_display, False);
3735 UNBLOCK_INPUT;
3734} 3736}
3735 3737
3736syms_of_xfns () 3738syms_of_xfns ()