diff options
| author | Kenichi Handa | 2009-03-11 11:45:47 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2009-03-11 11:45:47 +0000 |
| commit | ff85581a0fac99e42fdc6b2d1e2819afced9769f (patch) | |
| tree | ccde45723915640a9994a732c0ab204ef9bb43de /src | |
| parent | c50b7e98eae199d032b24115ae98a520b7b1cda4 (diff) | |
| download | emacs-ff85581a0fac99e42fdc6b2d1e2819afced9769f.tar.gz emacs-ff85581a0fac99e42fdc6b2d1e2819afced9769f.zip | |
(font_open_by_spec): Extern it.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/font.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 036d540a015..e5b46615fcc 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2009-03-11 Kenichi Handa <handa@m17n.org> | 1 | 2009-03-11 Kenichi Handa <handa@m17n.org> |
| 2 | 2 | ||
| 3 | * font.h (font_open_by_spec): Extern it. | ||
| 4 | |||
| 3 | * font.c (font_open_by_spec): New function. | 5 | * font.c (font_open_by_spec): New function. |
| 4 | (font_open_by_name): Use font_open_by_spec. | 6 | (font_open_by_name): Use font_open_by_spec. |
| 5 | 7 | ||
diff --git a/src/font.h b/src/font.h index 6a3c9e70d14..b481c31a132 100644 --- a/src/font.h +++ b/src/font.h | |||
| @@ -762,6 +762,7 @@ extern Lisp_Object font_load_for_lface P_ ((FRAME_PTR f, Lisp_Object *lface, | |||
| 762 | extern void font_prepare_for_face P_ ((FRAME_PTR f, struct face *face)); | 762 | extern void font_prepare_for_face P_ ((FRAME_PTR f, struct face *face)); |
| 763 | extern void font_done_for_face P_ ((FRAME_PTR f, struct face *face)); | 763 | extern void font_done_for_face P_ ((FRAME_PTR f, struct face *face)); |
| 764 | 764 | ||
| 765 | extern Lisp_Object font_open_by_spec P_ ((FRAME_PTR f, Lisp_Object spec)); | ||
| 765 | extern Lisp_Object font_open_by_name P_ ((FRAME_PTR f, char *name)); | 766 | extern Lisp_Object font_open_by_name P_ ((FRAME_PTR f, char *name)); |
| 766 | extern void font_close_object (FRAME_PTR f, Lisp_Object font_object); | 767 | extern void font_close_object (FRAME_PTR f, Lisp_Object font_object); |
| 767 | 768 | ||