summaryrefslogtreecommitdiff
path: root/gs/src/gdevx.c
diff options
context:
space:
mode:
authorL Peter Deutsch <lpd@ghostscript.com>2000-08-19 03:31:44 +0000
committerL Peter Deutsch <lpd@ghostscript.com>2000-08-19 03:31:44 +0000
commitd29fc67fd6a07e33bfb95645971e742b55a01209 (patch)
treebb36d61561fc617b73f2795f43f18588adbfce7c /gs/src/gdevx.c
parent0b7fbec1a229cb6f472a545418a3c2eedb09ee7f (diff)
downloadghostpdl-d29fc67fd6a07e33bfb95645971e742b55a01209.tar.gz
In the X Windows driver, changes XFlush() to XSync(False) so that updates
will actually complete before the command prompt appears. git-svn-id: http://svn.ghostscript.com/ghostscript/trunk@648 a1074d23-0009-0410-80fe-cf8c14f379e6
Diffstat (limited to 'gs/src/gdevx.c')
-rw-r--r--gs/src/gdevx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gs/src/gdevx.c b/gs/src/gdevx.c
index 9b1c12dd8..4e46d4c11 100644
--- a/gs/src/gdevx.c
+++ b/gs/src/gdevx.c
@@ -290,7 +290,7 @@ x_sync(gx_device * dev)
gx_device_X *xdev = (gx_device_X *) dev;
update_do_flush(xdev);
- XFlush(xdev->dpy);
+ XSync(xdev->dpy, False);
return 0;
}