emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master f03d936: ; Minor fix of recent change in fringe.c


From: Eli Zaretskii
Subject: [Emacs-diffs] master f03d936: ; Minor fix of recent change in fringe.c
Date: Sun, 19 Feb 2017 11:41:25 -0500 (EST)

branch: master
commit f03d936cd7a9e22f68c8ac1c14516d5079307b90
Author: Eli Zaretskii <address@hidden>
Commit: Eli Zaretskii <address@hidden>

    ; 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.
---
 src/fringe.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/fringe.c b/src/fringe.c
index dbcd52b..5d3108a 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]