aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2009-01-27 05:08:40 +0000
committerKenichi Handa2009-01-27 05:08:40 +0000
commitb0c25608cdec34df50f6546854bbf022476f619e (patch)
treec295749c7cfcbc6795a21f58dcf0c7d73f324469 /src
parent50b426eb1ed8980eb775d3dcff1297d98e4cda9c (diff)
downloademacs-b0c25608cdec34df50f6546854bbf022476f619e.tar.gz
emacs-b0c25608cdec34df50f6546854bbf022476f619e.zip
(struct xftfont_info): New member `index'.
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;