diff options
author | Dmitry Antipov <dmantipov@yandex.ru> | 2013-09-09 18:01:02 +0400 |
---|---|---|
committer | Dmitry Antipov <dmantipov@yandex.ru> | 2013-09-09 18:01:02 +0400 |
commit | 83fc05543999d2890697f1106eb126e2a535ef0e (patch) | |
tree | 445a69050ec0473291e8d162fb7438542713dd0b /src/frame.c | |
parent | fd462129af606e37146cad265284ff4097051ad8 (diff) |
Do not populate pure Xism x_sync to other ports.
* frame.h (x_sync): Move under HAVE_X_WINDOWS.
* frame.c (other_visible_frames) [HAVE_X_WINDOWS]: Use as such.
* nsfns.m, w32xfns.c (x_sync): Remove no-op.
* w32term.h (x_sync): Remove prototype.
Diffstat (limited to 'src/frame.c')
-rw-r--r-- | src/frame.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frame.c b/src/frame.c index 0f1560df15..692d224866 100644 --- a/src/frame.c +++ b/src/frame.c @@ -1108,7 +1108,7 @@ other_visible_frames (struct frame *f) /* Verify that we can still talk to the frame's X window, and note any recent change in visibility. */ -#ifdef HAVE_WINDOW_SYSTEM +#ifdef HAVE_X_WINDOWS if (FRAME_WINDOW_P (XFRAME (this))) x_sync (XFRAME (this)); #endif |