From: Robert Pluim Date: Fri, 14 Dec 2018 15:07:47 +0000 (+0100) Subject: Document font structure layout constraints X-Git-Tag: emacs-26.1.91~42 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3015636;p=emacs.git Document font structure layout constraints This has to be the same as in src/ftcrfont.c and src/ftfont.c * src/xftfont.c (struct xftfont_info): Document layout constraints. --- diff --git a/src/xftfont.c b/src/xftfont.c index 5ef90a014ea..9801d75d238 100644 --- a/src/xftfont.c +++ b/src/xftfont.c @@ -42,8 +42,9 @@ along with GNU Emacs. If not, see . */ struct xftfont_info { struct font font; - /* The following five members must be here in this order to be - compatible with struct ftfont_info (in ftfont.c). */ + /* The following members up to and including 'matrix' must be here + in this order to be compatible with struct ftfont_info (in + ftfont.c). */ #ifdef HAVE_LIBOTF bool maybe_otf; /* Flag to tell if this may be OTF or not. */ OTF *otf; @@ -51,6 +52,7 @@ struct xftfont_info FT_Size ft_size; int index; FT_Matrix matrix; + Display *display; XftFont *xftfont; unsigned x_display_id;