Martin Buchholz <martin(a)xemacs.org> writes:
Lucidatypewriter to Courier. I have to use
Options->Font->Lucidatypewriter to get back to my preferred typeface.
This seems like a clear user interface bug.
It is. Unfortunately I do not know a good way to solve this. Maybe the
best way for now would be to always specify family and size to custom.
i.e change
(when (and family (not (equal family from-family)))
(setq new-props (append (list :family family) new-props)))
to
; (when (and family (not (equal family from-family)))
(setq new-props (append (list :family (or family from-family))
new-props)) ; )
Does that work for you?
Jan