(free_bitmap_record): Renamed from Free_Bitmap_Record.
authorRichard M. Stallman <rms@gnu.org>
Tue, 9 Oct 2007 01:40:05 +0000 (01:40 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 9 Oct 2007 01:40:05 +0000 (01:40 +0000)
src/ChangeLog
src/image.c

index cfdf17f..541432e 100644 (file)
@@ -1,3 +1,13 @@
+2007-10-09  Richard Stallman  <rms@gnu.org>
+
+       * image.c (free_bitmap_record): Renamed from Free_Bitmap_Record.
+
+2007-09-29  Richard Stallman  <rms@gnu.org>
+
+       * eval.c (internal_condition_case_2, internal_condition_case_1)
+       (internal_condition_case): Reenable abort if x_catching_errors ()
+       to see if that really happens and why.
+
 2007-10-06  Andreas Schwab  <schwab@suse.de>
 
        * fileio.c (Fwrite_region): Ignore EINVAL error from fsync.
index c708bf0..81a42f9 100644 (file)
@@ -532,7 +532,7 @@ x_create_bitmap_from_file (f, file)
 /* 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 @@ x_destroy_bitmap (f, id)
       if (--bm->refcount == 0)
        {
          BLOCK_INPUT;
-         Free_Bitmap_Record (dpyinfo, bm);
+         free_bitmap_record (dpyinfo, bm);
          UNBLOCK_INPUT;
        }
     }
@@ -591,7 +591,7 @@ x_destroy_all_bitmaps (dpyinfo)
 
   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;
 }