X-Git-Url: http://git.hcoop.net/bpt/emacs.git/blobdiff_plain/41306318777a942420bc4feadbfacf662ea179dc..454e2fb9b928cb5d0f09db4e4334570419eb56b3:/src/fringe.c diff --git a/src/fringe.c b/src/fringe.c index 492eddae8d..3537027f1d 100644 --- a/src/fringe.c +++ b/src/fringe.c @@ -20,6 +20,8 @@ along with GNU Emacs. If not, see . */ #include #include +#include + #include "lisp.h" #include "frame.h" #include "window.h" @@ -29,8 +31,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 @@ -1521,7 +1521,7 @@ init_fringe_bitmap (int which, struct fringe_bitmap *fb, int once_p) | (swap_nibble[(b>>12) & 0xf])); b >>= (16 - fb->width); #ifdef WORDS_BIGENDIAN - b = ((b >> 8) | (b << 8)); + b = bswap_16 (b); #endif *bits++ = b; } @@ -1863,5 +1863,3 @@ w32_reset_fringes (void) } #endif /* HAVE_NTGUI */ - -#endif /* HAVE_WINDOW_SYSTEM */