* src/xfaces.c (Finternal_set_lisp_face_attribute): Fix validation
of the :style attribute of :box. Previously, nil for :style was not
accepted, which causes 'mode-line-inactive' face to be rejected.
(Bug#67567)
}
else if (EQ (k, QCstyle))
{
- if (!EQ (v, Qpressed_button) && !EQ (v, Qreleased_button)
- && !EQ(v, Qflat_button))
+ if (!NILP (v)
+ && !EQ (v, Qpressed_button)
+ && !EQ (v, Qreleased_button)
+ && !EQ (v, Qflat_button))
break;
}
else