]> git.eshelyaron.com Git - emacs.git/commitdiff
* xfaces.c (merge_face_vector_with_property): Use SYMBOL_NAME and
authorKen Raeburn <raeburn@raeburn.org>
Mon, 20 May 2002 08:06:45 +0000 (08:06 +0000)
committerKen Raeburn <raeburn@raeburn.org>
Mon, 20 May 2002 08:06:45 +0000 (08:06 +0000)
XSTRING instead of XSYMBOL and name field.

src/xfaces.c

index 9e37f096321578a470b020f0c0c03a22b760b1e5..e9f0b3195ac81f1dc8e9148190a5d696fc6b776c 100644 (file)
@@ -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)))