wmperry(a)aventail.com (William M. Perry) writes:
So to make a face in Emacs 21 now, you do:
(make-face 'foo)
(set-face-attribute 'foo nil
:family "lucidatypewriter"
:width 'normal
:height 200
:weight 'normal
:foreground "red"
:background "pink"
:strike-through t)
What happens if the attribute list is incomplete?
Jan