mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2025-01-07 15:21:46 +00:00
Rename font_driver member close -> close_font
* src/alloc.c (cleanup_vector): * src/xftfont.c (xftfont_driver): * src/xfont.c (xfont_driver): * src/nsfont.m (nsfont_driver): * src/macfont.m (macfont_driver): * src/ftxfont.c (ftxfont_driver): * src/ftfont.c (ftfont_driver): * src/ftcrfont.c (ftcrfont_driver): * src/font.h (struct font_driver): * src/font.c (font_clear_cache, font_close_object): Rename `close' member to `close_font', to avoid clash with preprocessor define of `close' in nt/inc/ms-w32.h and for consistency with `open_font'.
This commit is contained in:
parent
1ffa65cea5
commit
a9d6ba49d5
@ -3019,7 +3019,7 @@ cleanup_vector (struct Lisp_Vector *vector)
|
||||
{
|
||||
/* Attempt to catch subtle bugs like Bug#16140. */
|
||||
eassert (valid_font_driver (drv));
|
||||
drv->close (font);
|
||||
drv->close_font (font);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -2642,7 +2642,7 @@ font_clear_cache (struct frame *f, Lisp_Object cache,
|
||||
if (! NILP (AREF (val, FONT_TYPE_INDEX)))
|
||||
{
|
||||
eassert (font && driver == font->driver);
|
||||
driver->close (font);
|
||||
driver->close_font (font);
|
||||
}
|
||||
}
|
||||
if (driver->free_entity)
|
||||
@ -2962,7 +2962,7 @@ font_close_object (struct frame *f, Lisp_Object font_object)
|
||||
/* Already closed. */
|
||||
return;
|
||||
FONT_ADD_LOG ("close", font_object, Qnil);
|
||||
font->driver->close (font);
|
||||
font->driver->close_font (font);
|
||||
#ifdef HAVE_WINDOW_SYSTEM
|
||||
eassert (FRAME_DISPLAY_INFO (f)->n_fonts);
|
||||
FRAME_DISPLAY_INFO (f)->n_fonts--;
|
||||
|
@ -627,7 +627,7 @@ struct font_driver
|
||||
int pixel_size);
|
||||
|
||||
/* Close FONT. NOTE: this can be called by GC. */
|
||||
void (*close) (struct font *font);
|
||||
void (*close_font) (struct font *font);
|
||||
|
||||
/* Prepare FACE for displaying characters by FONT on frame F by
|
||||
storing some data in FACE->extra. */
|
||||
|
@ -577,7 +577,7 @@ struct font_driver const ftcrfont_driver =
|
||||
.match = ftcrfont_match,
|
||||
.list_family = ftfont_list_family,
|
||||
.open_font = ftcrfont_open,
|
||||
.close = ftcrfont_close,
|
||||
.close_font = ftcrfont_close,
|
||||
.has_char = ftcrfont_has_char,
|
||||
.encode_char = ftcrfont_encode_char,
|
||||
.text_extents = ftcrfont_text_extents,
|
||||
|
@ -3040,7 +3040,7 @@ static struct font_driver const ftfont_driver =
|
||||
.match = ftfont_match,
|
||||
.list_family = ftfont_list_family,
|
||||
.open_font = ftfont_open,
|
||||
.close = ftfont_close,
|
||||
.close_font = ftfont_close,
|
||||
.has_char = ftfont_has_char,
|
||||
.encode_char = ftfont_encode_char,
|
||||
.text_extents = ftfont_text_extents,
|
||||
|
@ -336,7 +336,7 @@ struct font_driver const ftxfont_driver =
|
||||
.match = ftxfont_match,
|
||||
.list_family = ftfont_list_family,
|
||||
.open_font = ftxfont_open,
|
||||
.close = ftxfont_close,
|
||||
.close_font = ftxfont_close,
|
||||
.has_char = ftfont_has_char,
|
||||
.encode_char = ftfont_encode_char,
|
||||
.text_extents = ftfont_text_extents,
|
||||
|
@ -1664,7 +1664,7 @@ static int macfont_variation_glyphs (struct font *, int c,
|
||||
.list_family = macfont_list_family,
|
||||
.free_entity = macfont_free_entity,
|
||||
.open_font = macfont_open,
|
||||
.close = macfont_close,
|
||||
.close_font = macfont_close,
|
||||
.has_char = macfont_has_char,
|
||||
.encode_char = macfont_encode_char,
|
||||
.text_extents = macfont_text_extents,
|
||||
|
@ -1492,7 +1492,7 @@ - (void)setIntAttribute: (NSInteger)attributeTag value: (NSInteger)val
|
||||
.match = nsfont_match,
|
||||
.list_family = nsfont_list_family,
|
||||
.open_font = nsfont_open,
|
||||
.close = nsfont_close,
|
||||
.close_font = nsfont_close,
|
||||
.has_char = nsfont_has_char,
|
||||
.encode_char = nsfont_encode_char,
|
||||
.text_extents = nsfont_text_extents,
|
||||
|
@ -1107,7 +1107,7 @@ struct font_driver const xfont_driver =
|
||||
.match = xfont_match,
|
||||
.list_family = xfont_list_family,
|
||||
.open_font = xfont_open,
|
||||
.close = xfont_close,
|
||||
.close_font = xfont_close,
|
||||
.prepare_face = xfont_prepare_face,
|
||||
.has_char = xfont_has_char,
|
||||
.encode_char = xfont_encode_char,
|
||||
|
@ -644,7 +644,7 @@ struct font_driver const xftfont_driver =
|
||||
.match = xftfont_match,
|
||||
.list_family = ftfont_list_family,
|
||||
.open_font = xftfont_open,
|
||||
.close = xftfont_close,
|
||||
.close_font = xftfont_close,
|
||||
.prepare_face = xftfont_prepare_face,
|
||||
.done_face = xftfont_done_face,
|
||||
.has_char = xftfont_has_char,
|
||||
|
Loading…
Reference in New Issue
Block a user