From: K. Handa Date: Wed, 2 Sep 2015 10:11:05 +0000 (+0900) Subject: Fix typo X-Git-Tag: emacs-25.0.90~1227 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fa5a9c7bae6d484107162641d16b1b38312ac225;p=emacs.git Fix typo * ftfont.c (ftfont_drive_otf): otf_positioning_type_components_mask -> OTF_positioning_type_components_mask. --- diff --git a/src/ftfont.c b/src/ftfont.c index a110cd8a8d8..98058aca343 100644 --- a/src/ftfont.c +++ b/src/ftfont.c @@ -1936,7 +1936,7 @@ ftfont_drive_otf (MFLTFont *font, } #ifdef OTF_POSITIONING_TYPE_GET_FORMAT g->libotf_positioning_type - = otfg->positioning_type & otf_positioning_type_components_mask; + = otfg->positioning_type & OTF_positioning_type_components_mask; #endif for (i++, otfg++; (i < otf_gstring.used && otfg->f.index.from == otfg[-1].f.index.from); @@ -1963,7 +1963,7 @@ ftfont_drive_otf (MFLTFont *font, } #ifdef OTF_POSITIONING_TYPE_GET_FORMAT g->libotf_positioning_type - = otfg->positioning_type & otf_positioning_type_components_mask; + = otfg->positioning_type & OTF_positioning_type_components_mask; #endif out->used++; }