aboutsummaryrefslogtreecommitdiffstats
path: root/src/font.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/font.h')
-rw-r--r--src/font.h16
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
59extern 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
242extern Lisp_Object QCspacing, QCdpi, QCscalable, QCotf, QClang, QCscript;
243extern Lisp_Object QCavgwidth, QCantialias, QCfont_entity;
244extern Lisp_Object Qp;
245
246
247/* Important character set symbols. */
248extern Lisp_Object Qascii_0;
249extern Lisp_Object Qiso8859_1, Qiso10646_1, Qunicode_bmp, Qunicode_sip;
250
251/* Special ADSTYLE properties to avoid fonts used for Latin characters. */
252extern 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;
791extern void syms_of_xfont (void); 779extern void syms_of_xfont (void);
792extern void syms_of_ftxfont (void); 780extern void syms_of_ftxfont (void);
793#ifdef HAVE_XFT 781#ifdef HAVE_XFT
794extern Lisp_Object Qxft;
795extern struct font_driver xftfont_driver; 782extern struct font_driver xftfont_driver;
796extern void syms_of_xftfont (void); 783extern void syms_of_xftfont (void);
797#endif 784#endif
@@ -808,7 +795,6 @@ extern struct font_driver uniscribe_font_driver;
808extern void syms_of_w32font (void); 795extern void syms_of_w32font (void);
809#endif /* HAVE_NTGUI */ 796#endif /* HAVE_NTGUI */
810#ifdef HAVE_NS 797#ifdef HAVE_NS
811extern Lisp_Object Qfontsize;
812extern struct font_driver nsfont_driver; 798extern struct font_driver nsfont_driver;
813extern void syms_of_nsfont (void); 799extern void syms_of_nsfont (void);
814extern void syms_of_macfont (void); 800extern 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
821extern Lisp_Object QCfoundry;
822
823extern void font_add_log (const char *, Lisp_Object, Lisp_Object); 807extern void font_add_log (const char *, Lisp_Object, Lisp_Object);
824extern void font_deferred_log (const char *, Lisp_Object, Lisp_Object); 808extern void font_deferred_log (const char *, Lisp_Object, Lisp_Object);
825 809