]> git.eshelyaron.com Git - emacs.git/commitdiff
(struct xftfont_info): New member `index'.
authorKenichi Handa <handa@m17n.org>
Tue, 27 Jan 2009 05:08:40 +0000 (05:08 +0000)
committerKenichi Handa <handa@m17n.org>
Tue, 27 Jan 2009 05:08:40 +0000 (05:08 +0000)
src/xftfont.c

index c059b7c0891fd825b308d577e0770778b8981259..fa393e826e320490f647350f4502822b2fe7503d 100644 (file)
@@ -46,13 +46,14 @@ static Lisp_Object QChinting , QCautohint, QChintstyle, QCrgba, QCembolden;
 struct xftfont_info
 {
   struct font font;
-  /* The following three members must be here in this order to be
+  /* The following four members must be here in this order to be
      compatible with struct ftfont_info (in ftfont.c).  */
 #ifdef HAVE_LIBOTF
   int maybe_otf;         /* Flag to tell if this may be OTF or not.  */
   OTF *otf;
 #endif /* HAVE_LIBOTF */
   FT_Size ft_size;
+  int index;
   Display *display;
   int screen;
   XftFont *xftfont;