1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-14 09:39:42 +00:00

(struct xftfont_info): New member `index'.

This commit is contained in:
Kenichi Handa 2009-01-27 05:08:40 +00:00
parent 50b426eb1e
commit b0c25608cd

View 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;