diff options
| author | Kenichi Handa | 2009-01-27 05:08:00 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2009-01-27 05:08:00 +0000 |
| commit | 50b426eb1ed8980eb775d3dcff1297d98e4cda9c (patch) | |
| tree | e7123b34da4e40103be9b3a9789969f0b28ea798 /src | |
| parent | a124bbb629ec951495d00d5f2b462b055a70c71d (diff) | |
| download | emacs-50b426eb1ed8980eb775d3dcff1297d98e4cda9c.tar.gz emacs-50b426eb1ed8980eb775d3dcff1297d98e4cda9c.zip | |
(struct font_driver): Fix comment for has_char.
Diffstat (limited to 'src')
| -rw-r--r-- | src/font.h | 8 |
1 files changed, 4 insertions, 4 deletions
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 | |||
| 547 | void (*done_face) P_ ((FRAME_PTR f, struct face *face)); | 547 | void (*done_face) P_ ((FRAME_PTR f, struct face *face)); |
| 548 | 548 | ||
| 549 | /* Optional. | 549 | /* Optional. |
| 550 | If FONT_ENTITY has a glyph for character C (Unicode code point), | 550 | If FONT (FONT-ENTITY or FONT-OBJECT) has a glyph for character C |
| 551 | return 1. If not, return 0. If a font must be opened to check | 551 | (Unicode code point), return 1. If not, return 0. If FONT is |
| 552 | it, return -1. */ | 552 | FONT-ENTITY and it must be opened to check it, return -1. */ |
| 553 | int (*has_char) P_ ((Lisp_Object entity, int c)); | 553 | int (*has_char) P_ ((Lisp_Object font, int c)); |
| 554 | 554 | ||
| 555 | /* Return a glyph code of FONT for characer C (Unicode code point). | 555 | /* Return a glyph code of FONT for characer C (Unicode code point). |
| 556 | If FONT doesn't have such a glyph, return FONT_INVALID_CODE. */ | 556 | If FONT doesn't have such a glyph, return FONT_INVALID_CODE. */ |