From: Paul Eggert Date: Fri, 15 Jun 2018 20:40:12 +0000 (-0700) Subject: Fix typo in previous macfont.m change X-Git-Tag: emacs-27.0.90~4847 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dec54ec0c067535c87371b1f7942941b90765647;p=emacs.git Fix typo in previous macfont.m change * src/macfont.m (macfont_descriptor_entity): Fix typo. Problem reported by Clemens Schüller. --- diff --git a/src/macfont.m b/src/macfont.m index 3a1e9e5f477..e0c704fac95 100644 --- a/src/macfont.m +++ b/src/macfont.m @@ -908,7 +908,8 @@ macfont_descriptor_entity (CTFontDescriptorRef desc, Lisp_Object extra, ASET (entity, FONT_EXTRA_INDEX, Fcopy_sequence (extra)); name = CTFontDescriptorCopyAttribute (desc, kCTFontNameAttribute); font_put_extra (entity, QCfont_entity, - Fcons (make_mint_ptr ((void *) name), make_number (traits))); + Fcons (make_mint_ptr ((void *) name), + make_number (sym_traits))); if (synth_sym_traits & kCTFontTraitItalic) FONT_SET_STYLE (entity, FONT_SLANT_INDEX, make_number (FONT_SLANT_SYNTHETIC_ITALIC));