From: Kenichi Handa Date: Tue, 27 Jan 2009 05:08:00 +0000 (+0000) Subject: (struct font_driver): Fix comment for has_char. X-Git-Tag: emacs-pretest-23.0.90~163 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=50b426eb1ed8980eb775d3dcff1297d98e4cda9c;p=emacs.git (struct font_driver): Fix comment for has_char. --- diff --git a/src/font.h b/src/font.h index 09f034d7209..fb66c167efe 100644 --- a/src/font.h +++ b/src/font.h @@ -547,10 +547,10 @@ struct font_driver void (*done_face) P_ ((FRAME_PTR f, struct face *face)); /* Optional. - If FONT_ENTITY has a glyph for character C (Unicode code point), - return 1. If not, return 0. If a font must be opened to check - it, return -1. */ - int (*has_char) P_ ((Lisp_Object entity, int c)); + If FONT (FONT-ENTITY or FONT-OBJECT) has a glyph for character C + (Unicode code point), return 1. If not, return 0. If FONT is + FONT-ENTITY and it must be opened to check it, return -1. */ + int (*has_char) P_ ((Lisp_Object font, int c)); /* Return a glyph code of FONT for characer C (Unicode code point). If FONT doesn't have such a glyph, return FONT_INVALID_CODE. */