diff options
author | keith <empty> | 1992-05-13 16:03:30 +0000 |
---|---|---|
committer | keith <empty> | 1992-05-13 16:03:30 +0000 |
commit | fd63c92d17a33ded31101acf7f954b520f221b86 (patch) | |
tree | 60740285b39530b5c3fb1a49548e2da36bdf866e /xc/lib/font | |
parent | a09e6006a73a2f40d805ae0311f929cb2959d813 (diff) |
set format variables in font record
Diffstat (limited to 'xc/lib/font')
-rw-r--r-- | xc/lib/font/Speedo/spglyph.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/xc/lib/font/Speedo/spglyph.c b/xc/lib/font/Speedo/spglyph.c index 9a53cfb0b..c01077b76 100644 --- a/xc/lib/font/Speedo/spglyph.c +++ b/xc/lib/font/Speedo/spglyph.c @@ -1,4 +1,4 @@ -/* $XConsortium: spglyph.c,v 1.10 91/07/31 01:08:59 keith Exp $ */ +/* $XConsortium: spglyph.c,v 1.11 92/04/15 16:12:09 gildea Exp $ */ /* * Copyright 1990, 1991 Network Computing Devices; * Portions Copyright 1987 by Digital Equipment Corporation and the @@ -292,6 +292,10 @@ build_all_sp_bitmaps(pfont, format, fmask) ret = CheckFSFormat(format, fmask, &bit_order, &byte_order, &scan, &glyph, &image); + pfont->bit = bit_order; + pfont->byte = byte_order; + pfont->glyph = glyph; + pfont->scan = scan; if (ret != Successful) return BadFontFormat; |