From: Eli Zaretskii Date: Sun, 19 Feb 2017 16:40:52 +0000 (+0200) Subject: ; Minor fix of recent change in fringe.c X-Git-Tag: emacs-26.0.90~772 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f03d936cd7a9e22f68c8ac1c14516d5079307b90;p=emacs.git ; Minor fix of recent change in fringe.c * src/fringe.c (init_fringe_bitmap) [HAVE_NTGUI]: Remove an unnecessary #ifdef introduced in a recent change. --- diff --git a/src/fringe.c b/src/fringe.c index dbcd52be058..5d3108a6c70 100644 --- a/src/fringe.c +++ b/src/fringe.c @@ -1456,9 +1456,9 @@ init_fringe_bitmap (int which, struct fringe_bitmap *fb, int once_p) { unsigned short b = *bits; b <<= (16 - fb->width); -#ifndef WORDS_BIGENDIAN + /* Windows is little-endian, so the next line is always + needed. */ b = ((b >> 8) | (b << 8)); -#endif *bits++ = b; } #endif