aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPo Lu2022-07-29 17:23:52 +0800
committerPo Lu2022-07-29 17:27:37 +0800
commit02b180e955ab0923b5fe2b8f362f1fedb092f760 (patch)
tree6cdba2d093a13348cca736ab82989430e3d78305 /src
parentacefbcf8351180b4eff46b30491ce758dcc42feb (diff)
downloademacs-02b180e955ab0923b5fe2b8f362f1fedb092f760.tar.gz
emacs-02b180e955ab0923b5fe2b8f362f1fedb092f760.zip
; * src/xterm.c (x_update_begin): Fix build without DBE.
Diffstat (limited to 'src')
-rw-r--r--src/xterm.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/xterm.c b/src/xterm.c
index 4d4febcc368..7399ec3e42d 100644
--- a/src/xterm.c
+++ b/src/xterm.c
@@ -6736,7 +6736,9 @@ x_update_begin (struct frame *f)
6736#if defined HAVE_XSYNC && !defined USE_GTK 6736#if defined HAVE_XSYNC && !defined USE_GTK
6737 /* If F is double-buffered, we can make the entire frame center 6737 /* If F is double-buffered, we can make the entire frame center
6738 around XdbeSwapBuffers. */ 6738 around XdbeSwapBuffers. */
6739#ifdef HAVE_XDBE
6739 if (!FRAME_X_DOUBLE_BUFFERED_P (f)) 6740 if (!FRAME_X_DOUBLE_BUFFERED_P (f))
6741#endif
6740 x_sync_update_begin (f); 6742 x_sync_update_begin (f);
6741#else 6743#else
6742 /* Nothing to do. */ 6744 /* Nothing to do. */