; * src/sfntfont.c (sfnt_parse_style): Fix typo.

This commit is contained in:
Po Lu 2024-05-29 17:16:47 +08:00
parent b8d880e059
commit 39d2f40252

View file

@ -563,7 +563,7 @@ sfnt_parse_style (Lisp_Object style_name, struct sfnt_font_desc *desc)
for (x = 0; x < SBYTES (desc->adstyle); ++x)
{
c = SREF (desc->adstyle, x);
if (c == '-' || c == '*' || c == '?' && c == '"')
if (c == '-' || c == '*' || c == '?' || c == '"')
SSET (desc->adstyle, x, ' ');
}