diff options
| author | Dmitry Antipov | 2013-09-09 18:01:02 +0400 |
|---|---|---|
| committer | Dmitry Antipov | 2013-09-09 18:01:02 +0400 |
| commit | 83fc05543999d2890697f1106eb126e2a535ef0e (patch) | |
| tree | 445a69050ec0473291e8d162fb7438542713dd0b /src/frame.c | |
| parent | fd462129af606e37146cad265284ff4097051ad8 (diff) | |
| download | emacs-83fc05543999d2890697f1106eb126e2a535ef0e.tar.gz emacs-83fc05543999d2890697f1106eb126e2a535ef0e.zip | |
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 0f1560df157..692d224866c 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -1108,7 +1108,7 @@ other_visible_frames (struct frame *f) | |||
| 1108 | 1108 | ||
| 1109 | /* Verify that we can still talk to the frame's X window, | 1109 | /* Verify that we can still talk to the frame's X window, |
| 1110 | and note any recent change in visibility. */ | 1110 | and note any recent change in visibility. */ |
| 1111 | #ifdef HAVE_WINDOW_SYSTEM | 1111 | #ifdef HAVE_X_WINDOWS |
| 1112 | if (FRAME_WINDOW_P (XFRAME (this))) | 1112 | if (FRAME_WINDOW_P (XFRAME (this))) |
| 1113 | x_sync (XFRAME (this)); | 1113 | x_sync (XFRAME (this)); |
| 1114 | #endif | 1114 | #endif |