# HG changeset patch # User Glenn Morris # Date 1189755170 0 # Node ID 7080fcd26c3e48f36b172f61f1f73365675f128e # Parent bcf87897c429d57c6f6cf995110983e954c45f38 (init_fringe_bitmap) : Move to file scope. diff -r bcf87897c429 -r 7080fcd26c3e src/fringe.c --- a/src/fringe.c Fri Sep 14 06:22:20 2007 +0000 +++ b/src/fringe.c Fri Sep 14 07:32:50 2007 +0000 @@ -1327,6 +1327,14 @@ 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; @@ -1336,11 +1344,6 @@ 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;