* fringe.c (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
authorPaul Eggert <eggert@cs.ucla.edu>
Thu, 10 Mar 2011 02:02:40 +0000 (18:02 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Thu, 10 Mar 2011 02:02:40 +0000 (18:02 -0800)
src/ChangeLog
src/fringe.c

index 55e0031..b6ab1e1 100644 (file)
@@ -1,5 +1,7 @@
 2011-03-10  Paul Eggert  <eggert@cs.ucla.edu>
 
+       * fringe.c (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
+
        * alloc.c (mark_fringe_data): Move decl from here ...
        * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
        to check its interface.
index d42d646..84606a2 100644 (file)
@@ -1380,7 +1380,7 @@ compute_fringe_widths (struct frame *f, int redraw)
 
 /* Free resources used by a user-defined bitmap.  */
 
-void
+static void
 destroy_fringe_bitmap (int n)
 {
   struct fringe_bitmap **fbp;
@@ -1448,7 +1448,7 @@ static const unsigned char swap_nibble[16] = {
   0x3, 0xb, 0x7, 0xf};          /* 0011 1011 0111 1111 */
 #endif                          /* HAVE_X_WINDOWS */
 
-void
+static void
 init_fringe_bitmap (int which, struct fringe_bitmap *fb, int once_p)
 {
   if (once_p || fb->dynamic)
@@ -1831,4 +1831,3 @@ w32_reset_fringes (void)
 #endif /* HAVE_NTGUI */
 
 #endif /* HAVE_WINDOW_SYSTEM */
-