diff options
| author | Ken Raeburn | 2002-05-20 08:06:45 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2002-05-20 08:06:45 +0000 |
| commit | cce200a75bc8bd6dbd7f7f91231286bd854ef497 (patch) | |
| tree | 75fccb1f853b55bc51fa994e41812e3f43b78f6d /src | |
| parent | 38b76195cecb971905e16bbef566e9c8a5e07c4b (diff) | |
| download | emacs-cce200a75bc8bd6dbd7f7f91231286bd854ef497.tar.gz emacs-cce200a75bc8bd6dbd7f7f91231286bd854ef497.zip | |
* xfaces.c (merge_face_vector_with_property): Use SYMBOL_NAME and
XSTRING instead of XSYMBOL and name field.
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 9e37f096321..e9f0b3195ac 100644 --- a/src/xfaces.c +++ b/src/xfaces.c | |||
| @@ -3451,7 +3451,7 @@ merge_face_vector_with_property (f, to, prop) | |||
| 3451 | add_to_log ("Invalid face color", color_name, Qnil); | 3451 | add_to_log ("Invalid face color", color_name, Qnil); |
| 3452 | } | 3452 | } |
| 3453 | else if (SYMBOLP (first) | 3453 | else if (SYMBOLP (first) |
| 3454 | && *XSYMBOL (first)->name->data == ':') | 3454 | && *XSTRING (SYMBOL_NAME (first))->data == ':') |
| 3455 | { | 3455 | { |
| 3456 | /* Assume this is the property list form. */ | 3456 | /* Assume this is the property list form. */ |
| 3457 | while (CONSP (prop) && CONSP (XCDR (prop))) | 3457 | while (CONSP (prop) && CONSP (XCDR (prop))) |