* w32font.c (w32font_open): Set font type to gdi.

* w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
This commit is contained in:
Jason Rumney 2008-07-23 15:37:44 +00:00
parent f0492e5ff5
commit 4b1355037a
3 changed files with 6 additions and 0 deletions

View file

@ -2,6 +2,9 @@
* w32font.c (w32_enumfont_pattern_entity): Return height consistent
with opened font.
(w32font_open): Set font type to gdi.
* w32uniscribe.c (uniscribe_open): Set font type to uniscribe.
2008-07-23 Dan Nicolaescu <dann@ics.uci.edu>

View file

@ -238,6 +238,7 @@ w32font_open (f, font_entity, pixel_size)
font_object = font_make_object (VECSIZE (struct w32font_info),
font_entity, pixel_size);
ASET (font_object, FONT_TYPE_INDEX, Qgdi);
if (!w32font_open_internal (f, font_entity, pixel_size, font_object))
{

View file

@ -125,6 +125,8 @@ uniscribe_open (f, font_entity, pixel_size)
struct uniscribe_font_info *uniscribe_font
= (struct uniscribe_font_info *) XFONT_OBJECT (font_object);
ASET (font_object, FONT_TYPE_INDEX, Quniscribe);
if (!w32font_open_internal (f, font_entity, pixel_size, font_object))
{
return Qnil;