diff options
| author | Eli Zaretskii | 2005-11-26 11:06:53 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2005-11-26 11:06:53 +0000 |
| commit | 0ad040ffe59304d3311561ca8577cfa7220cc096 (patch) | |
| tree | 527248b0d3d10f2316a4a366ccdfefef9679abfa /src | |
| parent | 107dd21bcae503fa862f242006253b7f2738bfe3 (diff) | |
| download | emacs-0ad040ffe59304d3311561ca8577cfa7220cc096.tar.gz emacs-0ad040ffe59304d3311561ca8577cfa7220cc096.zip | |
(Finternal_set_lisp_face_attribute_from_resource): Handle :inherit property
as a lisp expression.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xfaces.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xfaces.c b/src/xfaces.c index 7923686eb50..9a34717b778 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -4687,7 +4687,7 @@ DEFUN ("internal-set-lisp-face-attribute-from-resource", | |||
| 4687 | if (SYMBOLP (boolean_value)) | 4687 | if (SYMBOLP (boolean_value)) |
| 4688 | value = boolean_value; | 4688 | value = boolean_value; |
| 4689 | } | 4689 | } |
| 4690 | else if (EQ (attr, QCbox)) | 4690 | else if (EQ (attr, QCbox) || EQ (attr, QCinherit)) |
| 4691 | value = Fcar (Fread_from_string (value, Qnil, Qnil)); | 4691 | value = Fcar (Fread_from_string (value, Qnil, Qnil)); |
| 4692 | 4692 | ||
| 4693 | return Finternal_set_lisp_face_attribute (face, attr, value, frame); | 4693 | return Finternal_set_lisp_face_attribute (face, attr, value, frame); |