diff --git a/src/ChangeLog b/src/ChangeLog index 2274071a902..14519f874d2 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2013-10-02 Dmitry Antipov + + * fringe.c (toplevel): Do not use HAVE_WINDOW_SYSTEM because + this module is never compiled otherwise. + 2013-10-01 Alp Aker * macfont.m (macfont_draw): Use CGRectMake rather than NSMakeRect diff --git a/src/fringe.c b/src/fringe.c index 492eddae8d4..85103f7f08d 100644 --- a/src/fringe.c +++ b/src/fringe.c @@ -29,8 +29,6 @@ along with GNU Emacs. If not, see . */ #include "blockinput.h" #include "termhooks.h" -#ifdef HAVE_WINDOW_SYSTEM - /* Fringe bitmaps are represented in three different ways: Logical bitmaps are used internally to denote things like @@ -1863,5 +1861,3 @@ w32_reset_fringes (void) } #endif /* HAVE_NTGUI */ - -#endif /* HAVE_WINDOW_SYSTEM */