diff src/image.c @ 85095:4f61ded4a62e

(free_bitmap_record): Renamed from Free_Bitmap_Record.
author Richard M. Stallman <rms@gnu.org>
date Tue, 09 Oct 2007 01:39:39 +0000
parents 50b33e26718b
children 9c9740553555
line wrap: on
line diff
--- a/src/image.c	Tue Oct 09 01:39:13 2007 +0000
+++ b/src/image.c	Tue Oct 09 01:39:39 2007 +0000
@@ -532,7 +532,7 @@
 /* Free bitmap B.  */
 
 static void
-Free_Bitmap_Record (dpyinfo, bm)
+free_bitmap_record (dpyinfo, bm)
      Display_Info *dpyinfo;
      Bitmap_Record *bm;
 {
@@ -574,7 +574,7 @@
       if (--bm->refcount == 0)
 	{
 	  BLOCK_INPUT;
-	  Free_Bitmap_Record (dpyinfo, bm);
+	  free_bitmap_record (dpyinfo, bm);
 	  UNBLOCK_INPUT;
 	}
     }
@@ -591,7 +591,7 @@
 
   for (i = 0; i < dpyinfo->bitmaps_last; i++, bm++)
     if (bm->refcount > 0)
-      Free_Bitmap_Record (dpyinfo, bm);
+      free_bitmap_record (dpyinfo, bm);
 
   dpyinfo->bitmaps_last = 0;
 }