From: Richard M. Stallman Date: Tue, 9 Oct 2007 01:40:05 +0000 (+0000) Subject: (free_bitmap_record): Renamed from Free_Bitmap_Record. X-Git-Tag: emacs-pretest-23.0.90~10484 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=65342ae38594f2e07734ac09b66b3964fb01cb57;p=emacs.git (free_bitmap_record): Renamed from Free_Bitmap_Record. --- diff --git a/src/ChangeLog b/src/ChangeLog index cfdf17f0842..541432e70bf 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,13 @@ +2007-10-09 Richard Stallman + + * image.c (free_bitmap_record): Renamed from Free_Bitmap_Record. + +2007-09-29 Richard Stallman + + * 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 * fileio.c (Fwrite_region): Ignore EINVAL error from fsync. diff --git a/src/image.c b/src/image.c index c708bf0374f..81a42f91da2 100644 --- a/src/image.c +++ b/src/image.c @@ -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; }