diff options
| author | Eli Zaretskii | 2021-08-29 18:03:28 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2021-08-29 18:03:28 +0300 |
| commit | a2a0b70c8bf03ee0ad57f97b06b1d591dc8801f1 (patch) | |
| tree | 8b1782e1b7604d332f668791fa6718461c15bdb5 /src | |
| parent | 9a1d54814e7970638d8fed56c84389b6c49a55cb (diff) | |
| download | emacs-a2a0b70c8bf03ee0ad57f97b06b1d591dc8801f1.tar.gz emacs-a2a0b70c8bf03ee0ad57f97b06b1d591dc8801f1.zip | |
; * src/xfaces.c (gui_supports_face_attributes_p): Fix typo in comment.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfaces.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index 207f0d6a36e..2273fb4fe4d 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -5092,8 +5092,8 @@ gui_supports_face_attributes_p (struct frame *f, | |||
| 5092 | { | 5092 | { |
| 5093 | Lisp_Object *def_attrs = def_face->lface; | 5093 | Lisp_Object *def_attrs = def_face->lface; |
| 5094 | 5094 | ||
| 5095 | /* Check that other specified attributes are different that the default | 5095 | /* Check that other specified attributes are different from the |
| 5096 | face. */ | 5096 | default face. */ |
| 5097 | if ((!UNSPECIFIEDP (attrs[LFACE_UNDERLINE_INDEX]) | 5097 | if ((!UNSPECIFIEDP (attrs[LFACE_UNDERLINE_INDEX]) |
| 5098 | && face_attr_equal_p (attrs[LFACE_UNDERLINE_INDEX], | 5098 | && face_attr_equal_p (attrs[LFACE_UNDERLINE_INDEX], |
| 5099 | def_attrs[LFACE_UNDERLINE_INDEX])) | 5099 | def_attrs[LFACE_UNDERLINE_INDEX])) |