diff options
Diffstat (limited to 'src/font.h')
| -rw-r--r-- | src/font.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/font.h b/src/font.h index 511a7de3a16..7b43c2f99e7 100644 --- a/src/font.h +++ b/src/font.h | |||
| @@ -239,7 +239,7 @@ enum font_property_index | |||
| 239 | ASET ((font), prop, make_number (font_style_to_value (prop, val, 1))) | 239 | ASET ((font), prop, make_number (font_style_to_value (prop, val, 1))) |
| 240 | 240 | ||
| 241 | extern Lisp_Object QCspacing, QCdpi, QCscalable, QCotf, QClang, QCscript; | 241 | extern Lisp_Object QCspacing, QCdpi, QCscalable, QCotf, QClang, QCscript; |
| 242 | extern Lisp_Object QCavgwidth, QCantialias, QCfont_entity, QCfc_unknown_spec; | 242 | extern Lisp_Object QCavgwidth, QCantialias, QCfont_entity; |
| 243 | extern Lisp_Object Qp; | 243 | extern Lisp_Object Qp; |
| 244 | 244 | ||
| 245 | 245 | ||
| @@ -737,8 +737,8 @@ struct font_data_list | |||
| 737 | }; | 737 | }; |
| 738 | 738 | ||
| 739 | EXFUN (Ffont_spec, MANY); | 739 | EXFUN (Ffont_spec, MANY); |
| 740 | EXFUN (Fcopy_font_spec, 1); | 740 | extern Lisp_Object copy_font_spec (Lisp_Object); |
| 741 | EXFUN (Fmerge_font_spec, 2); | 741 | extern Lisp_Object merge_font_spec (Lisp_Object, Lisp_Object); |
| 742 | EXFUN (Ffont_get, 2); | 742 | EXFUN (Ffont_get, 2); |
| 743 | EXFUN (Ffont_put, 3); | 743 | EXFUN (Ffont_put, 3); |
| 744 | EXFUN (Flist_fonts, 4); | 744 | EXFUN (Flist_fonts, 4); |
| @@ -779,7 +779,6 @@ extern void font_done_for_face (FRAME_PTR f, struct face *face); | |||
| 779 | 779 | ||
| 780 | extern Lisp_Object font_open_by_spec (FRAME_PTR f, Lisp_Object spec); | 780 | extern Lisp_Object font_open_by_spec (FRAME_PTR f, Lisp_Object spec); |
| 781 | extern Lisp_Object font_open_by_name (FRAME_PTR f, const char *name); | 781 | extern Lisp_Object font_open_by_name (FRAME_PTR f, const char *name); |
| 782 | extern void font_close_object (FRAME_PTR f, Lisp_Object font_object); | ||
| 783 | 782 | ||
| 784 | extern Lisp_Object font_intern_prop (const char *str, int len, int force_symbol); | 783 | extern Lisp_Object font_intern_prop (const char *str, int len, int force_symbol); |
| 785 | extern void font_update_sort_order (int *order); | 784 | extern void font_update_sort_order (int *order); |
| @@ -821,13 +820,14 @@ extern void syms_of_ftfont (void); | |||
| 821 | #endif /* HAVE_FREETYPE */ | 820 | #endif /* HAVE_FREETYPE */ |
| 822 | #ifdef HAVE_X_WINDOWS | 821 | #ifdef HAVE_X_WINDOWS |
| 823 | extern struct font_driver xfont_driver; | 822 | extern struct font_driver xfont_driver; |
| 824 | extern struct font_driver ftxfont_driver; | ||
| 825 | extern void syms_of_xfont (void); | 823 | extern void syms_of_xfont (void); |
| 826 | extern void syms_of_ftxfont (void); | 824 | extern void syms_of_ftxfont (void); |
| 827 | #ifdef HAVE_XFT | 825 | #ifdef HAVE_XFT |
| 828 | extern struct font_driver xftfont_driver; | 826 | extern struct font_driver xftfont_driver; |
| 829 | extern void syms_of_xftfont (void); | 827 | extern void syms_of_xftfont (void); |
| 830 | #endif /* HAVE_XFT */ | 828 | #elif defined HAVE_FREETYPE |
| 829 | extern struct font_driver ftxfont_driver; | ||
| 830 | #endif | ||
| 831 | #ifdef HAVE_BDFFONT | 831 | #ifdef HAVE_BDFFONT |
| 832 | extern void syms_of_bdffont (void); | 832 | extern void syms_of_bdffont (void); |
| 833 | #endif /* HAVE_BDFFONT */ | 833 | #endif /* HAVE_BDFFONT */ |
| @@ -871,4 +871,3 @@ extern void font_deferred_log (const char *, Lisp_Object, Lisp_Object); | |||
| 871 | #endif /* not FONT_DEBUG */ | 871 | #endif /* not FONT_DEBUG */ |
| 872 | 872 | ||
| 873 | #endif /* not EMACS_FONT_H */ | 873 | #endif /* not EMACS_FONT_H */ |
| 874 | |||