]> git.eshelyaron.com Git - emacs.git/commitdiff
; Minor fix of recent change in fringe.c
authorEli Zaretskii <eliz@gnu.org>
Sun, 19 Feb 2017 16:40:52 +0000 (18:40 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sun, 19 Feb 2017 16:40:52 +0000 (18:40 +0200)
* src/fringe.c (init_fringe_bitmap) [HAVE_NTGUI]: Remove an
unnecessary #ifdef introduced in a recent change.

src/fringe.c

index dbcd52be058d8e2a3d2cce69e8714b74229bdc60..5d3108a6c708f98f9f82caaffa93808e8f9a61a4 100644 (file)
@@ -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