aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xftfont.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xftfont.c b/src/xftfont.c
index c059b7c0891..fa393e826e3 100644
--- a/src/xftfont.c
+++ b/src/xftfont.c
@@ -46,13 +46,14 @@ static Lisp_Object QChinting , QCautohint, QChintstyle, QCrgba, QCembolden;
46struct xftfont_info 46struct xftfont_info
47{ 47{
48 struct font font; 48 struct font font;
49 /* The following three members must be here in this order to be 49 /* The following four members must be here in this order to be
50 compatible with struct ftfont_info (in ftfont.c). */ 50 compatible with struct ftfont_info (in ftfont.c). */
51#ifdef HAVE_LIBOTF 51#ifdef HAVE_LIBOTF
52 int maybe_otf; /* Flag to tell if this may be OTF or not. */ 52 int maybe_otf; /* Flag to tell if this may be OTF or not. */
53 OTF *otf; 53 OTF *otf;
54#endif /* HAVE_LIBOTF */ 54#endif /* HAVE_LIBOTF */
55 FT_Size ft_size; 55 FT_Size ft_size;
56 int index;
56 Display *display; 57 Display *display;
57 int screen; 58 int screen;
58 XftFont *xftfont; 59 XftFont *xftfont;