diff options
Diffstat (limited to 'src/font.h')
| -rw-r--r-- | src/font.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/font.h b/src/font.h index 617860c85f1..d12ae2c09bb 100644 --- a/src/font.h +++ b/src/font.h | |||
| @@ -56,7 +56,6 @@ INLINE_HEADER_BEGIN | |||
| 56 | Note: Only the method `open' of a font-driver can create this | 56 | Note: Only the method `open' of a font-driver can create this |
| 57 | object, and it should never be modified by Lisp. */ | 57 | object, and it should never be modified by Lisp. */ |
| 58 | 58 | ||
| 59 | extern Lisp_Object Qfont_spec, Qfont_entity, Qfont_object; | ||
| 60 | 59 | ||
| 61 | /* An enumerator for each font property. This is used as an index to | 60 | /* An enumerator for each font property. This is used as an index to |
| 62 | the vector of FONT-SPEC and FONT-ENTITY. | 61 | the vector of FONT-SPEC and FONT-ENTITY. |
| @@ -239,17 +238,6 @@ enum font_property_index | |||
| 239 | #define FONT_BASE(f) ((f)->ascent) | 238 | #define FONT_BASE(f) ((f)->ascent) |
| 240 | #define FONT_DESCENT(f) ((f)->descent) | 239 | #define FONT_DESCENT(f) ((f)->descent) |
| 241 | 240 | ||
| 242 | extern Lisp_Object QCspacing, QCdpi, QCscalable, QCotf, QClang, QCscript; | ||
| 243 | extern Lisp_Object QCavgwidth, QCantialias, QCfont_entity; | ||
| 244 | extern Lisp_Object Qp; | ||
| 245 | |||
| 246 | |||
| 247 | /* Important character set symbols. */ | ||
| 248 | extern Lisp_Object Qascii_0; | ||
| 249 | extern Lisp_Object Qiso8859_1, Qiso10646_1, Qunicode_bmp, Qunicode_sip; | ||
| 250 | |||
| 251 | /* Special ADSTYLE properties to avoid fonts used for Latin characters. */ | ||
| 252 | extern Lisp_Object Qja, Qko; | ||
| 253 | 241 | ||
| 254 | /* Structure for a font-spec. */ | 242 | /* Structure for a font-spec. */ |
| 255 | 243 | ||
| @@ -791,7 +779,6 @@ extern struct font_driver xfont_driver; | |||
| 791 | extern void syms_of_xfont (void); | 779 | extern void syms_of_xfont (void); |
| 792 | extern void syms_of_ftxfont (void); | 780 | extern void syms_of_ftxfont (void); |
| 793 | #ifdef HAVE_XFT | 781 | #ifdef HAVE_XFT |
| 794 | extern Lisp_Object Qxft; | ||
| 795 | extern struct font_driver xftfont_driver; | 782 | extern struct font_driver xftfont_driver; |
| 796 | extern void syms_of_xftfont (void); | 783 | extern void syms_of_xftfont (void); |
| 797 | #endif | 784 | #endif |
| @@ -808,7 +795,6 @@ extern struct font_driver uniscribe_font_driver; | |||
| 808 | extern void syms_of_w32font (void); | 795 | extern void syms_of_w32font (void); |
| 809 | #endif /* HAVE_NTGUI */ | 796 | #endif /* HAVE_NTGUI */ |
| 810 | #ifdef HAVE_NS | 797 | #ifdef HAVE_NS |
| 811 | extern Lisp_Object Qfontsize; | ||
| 812 | extern struct font_driver nsfont_driver; | 798 | extern struct font_driver nsfont_driver; |
| 813 | extern void syms_of_nsfont (void); | 799 | extern void syms_of_nsfont (void); |
| 814 | extern void syms_of_macfont (void); | 800 | extern void syms_of_macfont (void); |
| @@ -818,8 +804,6 @@ extern void syms_of_macfont (void); | |||
| 818 | #define FONT_DEBUG | 804 | #define FONT_DEBUG |
| 819 | #endif | 805 | #endif |
| 820 | 806 | ||
| 821 | extern Lisp_Object QCfoundry; | ||
| 822 | |||
| 823 | extern void font_add_log (const char *, Lisp_Object, Lisp_Object); | 807 | extern void font_add_log (const char *, Lisp_Object, Lisp_Object); |
| 824 | extern void font_deferred_log (const char *, Lisp_Object, Lisp_Object); | 808 | extern void font_deferred_log (const char *, Lisp_Object, Lisp_Object); |
| 825 | 809 | ||