; * src/sfntfont.c (sfnt_parse_style): Fix typo.
This commit is contained in:
parent
b8d880e059
commit
39d2f40252
1 changed files with 1 additions and 1 deletions
|
@ -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, ' ');
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue