Function: face-attributes-as-vector

face-attributes-as-vector is a function defined in xfaces.c.

Signature

(face-attributes-as-vector PLIST)

Documentation

Return a vector of face attributes corresponding to PLIST.

Source Code

// Defined in /usr/src/emacs/src/xfaces.c
{
  Lisp_Object lface = make_vector (LFACE_VECTOR_SIZE, Qunspecified);
  merge_face_ref (NULL, XFRAME (selected_frame),
                  plist, XVECTOR (lface)->contents,
                  true, NULL, 0);
  return lface;
}