Mercurial > emacs
changeset 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 | 717b92d4133f |
children | 28b3d4a08d2f |
files | src/image.c |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
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; }