From cce200a75bc8bd6dbd7f7f91231286bd854ef497 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Mon, 20 May 2002 08:06:45 +0000 Subject: [PATCH] * xfaces.c (merge_face_vector_with_property): Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field. --- src/xfaces.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) add_to_log ("Invalid face color", color_name, Qnil); } else if (SYMBOLP (first) - && *XSYMBOL (first)->name->data == ':') + && *XSTRING (SYMBOL_NAME (first))->data == ':') { /* Assume this is the property list form. */ while (CONSP (prop) && CONSP (XCDR (prop))) -- 2.39.2