summaryrefslogtreecommitdiff
path: root/src/fringe.c
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2007-09-14 07:33:27 +0000
committerGlenn Morris <rgm@gnu.org>2007-09-14 07:33:27 +0000
commit71b9b527a63175caea08657504bfe86816eb9c70 (patch)
tree4bae72753b9ec291ec00712adb3fe106717e9e54 /src/fringe.c
parent8dd5ad712522e54242bd517b6763d80226be3e8d (diff)
downloademacs-71b9b527a63175caea08657504bfe86816eb9c70.tar.gz
(init_fringe_bitmap) <swap nibble>: Move to file scope.
Diffstat (limited to 'src/fringe.c')
-rw-r--r--src/fringe.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/src/fringe.c b/src/fringe.c
index 991575da39b..70e14f51f5f 100644
--- a/src/fringe.c
+++ b/src/fringe.c
@@ -1330,6 +1330,14 @@ If BITMAP overrides a standard fringe bitmap, the original bitmap is restored.
On W32 and MAC (little endian), there's no need to do this.
*/
+#if defined (HAVE_X_WINDOWS)
+static unsigned char swap_nibble[16] = {
+ 0x0, 0x8, 0x4, 0xc, /* 0000 1000 0100 1100 */
+ 0x2, 0xa, 0x6, 0xe, /* 0010 1010 0110 1110 */
+ 0x1, 0x9, 0x5, 0xd, /* 0001 1001 0101 1101 */
+ 0x3, 0xb, 0x7, 0xf}; /* 0011 1011 0111 1111 */
+#endif /* HAVE_X_WINDOWS */
+
void
init_fringe_bitmap (which, fb, once_p)
int which;
@@ -1339,11 +1347,6 @@ init_fringe_bitmap (which, fb, once_p)
if (once_p || fb->dynamic)
{
#if defined (HAVE_X_WINDOWS)
- static unsigned char swap_nibble[16]
- = { 0x0, 0x8, 0x4, 0xc, /* 0000 1000 0100 1100 */
- 0x2, 0xa, 0x6, 0xe, /* 0010 1010 0110 1110 */
- 0x1, 0x9, 0x5, 0xd, /* 0001 1001 0101 1101 */
- 0x3, 0xb, 0x7, 0xf }; /* 0011 1011 0111 1111 */
unsigned short *bits = fb->bits;
int j;