summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/texmfmem.h
diff options
context:
space:
mode:
authorJonathan Kew <jfkthame@googlemail.com>2008-07-13 16:25:21 +0000
committerJonathan Kew <jfkthame@googlemail.com>2008-07-13 16:25:21 +0000
commit6454443005d672f0efd36616ee60eb200033f2d3 (patch)
tree07cdcd9b8ed4a4cf12ea0594ef169726260ffca3 /Build/source/texk/web2c/texmfmem.h
parentbb34582586fcbf72e17d10ab5bdd1cfca97c72eb (diff)
xetex version 0.999.3, fixed big/little-endian format incompatibility
git-svn-id: svn://tug.org/texlive/trunk@9515 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/texmfmem.h')
-rw-r--r--Build/source/texk/web2c/texmfmem.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Build/source/texk/web2c/texmfmem.h b/Build/source/texk/web2c/texmfmem.h
index 8d227add06d..0596376013e 100644
--- a/Build/source/texk/web2c/texmfmem.h
+++ b/Build/source/texk/web2c/texmfmem.h
@@ -141,8 +141,7 @@ typedef union
/* fmemory_word for font_list; needs to be only four bytes. This saves
- significant space in the .fmt files. */
-
+ significant space in the .fmt files. (Not true in XeTeX, actually!) */
typedef union
{
#ifdef WORDS_BIGENDIAN
@@ -151,6 +150,9 @@ typedef union
#else /* not WORDS_BIGENDIAN */
struct
{
+#ifdef XeTeX
+ halfword junk; /* quarterword is really 16 bits in XeTeX, so integer does not fill the union */
+#endif
integer CINT;
} u;