projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b8d880e
)
; * src/sfntfont.c (sfnt_parse_style): Fix typo.
author
Po Lu
<luangruo@yahoo.com>
Wed, 29 May 2024 09:16:47 +0000
(17:16 +0800)
committer
Po Lu
<luangruo@yahoo.com>
Wed, 29 May 2024 09:16:47 +0000
(17:16 +0800)
src/sfntfont.c
patch
|
blob
|
history
diff --git
a/src/sfntfont.c
b/src/sfntfont.c
index 79bc251abe46932a77e53606bbec074571c12677..cb94a13642e5a5e8ace4d907967bf0e17ad2cd19 100644
(file)
--- a/
src/sfntfont.c
+++ b/
src/sfntfont.c
@@
-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, ' ');
}