diff options
| author | Eli Zaretskii | 2017-02-19 18:40:52 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2017-02-19 18:40:52 +0200 |
| commit | f03d936cd7a9e22f68c8ac1c14516d5079307b90 (patch) | |
| tree | 6105138b0d99726b4b8c5234017bbf753f08dcdd /src | |
| parent | 35acb3950f546503b0000cde8854b251601f3fb4 (diff) | |
| download | emacs-f03d936cd7a9e22f68c8ac1c14516d5079307b90.tar.gz emacs-f03d936cd7a9e22f68c8ac1c14516d5079307b90.zip | |
; 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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fringe.c | 4 |
1 files changed, 2 insertions, 2 deletions
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) | |||
| 1456 | { | 1456 | { |
| 1457 | unsigned short b = *bits; | 1457 | unsigned short b = *bits; |
| 1458 | b <<= (16 - fb->width); | 1458 | b <<= (16 - fb->width); |
| 1459 | #ifndef WORDS_BIGENDIAN | 1459 | /* Windows is little-endian, so the next line is always |
| 1460 | needed. */ | ||
| 1460 | b = ((b >> 8) | (b << 8)); | 1461 | b = ((b >> 8) | (b << 8)); |
| 1461 | #endif | ||
| 1462 | *bits++ = b; | 1462 | *bits++ = b; |
| 1463 | } | 1463 | } |
| 1464 | #endif | 1464 | #endif |