Some time ago, Jan Vroonhof wrote...
"Kirill 'Big K' Katsnelson" <kkm(a)dtmx.com>
writes:
> If anybody can read this function, that'd be great.
Try understanding modify-specifier-instances first. I wrote that for
Andy as a "frob-*-property-light".
(Frob face property needs to do some more magic with devices).
> (specifier-spec-list (face-font 'default))
> => nil
This is a nono. frob-face-property assumes that there always is a
global value on the default face.
The problem is that make-face-larger did work two weeks ago. Under X,
x-init-global-faces does what:
(or (face-font 'default 'global)
(set-face-font 'default
"-*-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-*"
'global '(x default)))
There was never an equivalent under windows, and I seem to understand
why does not it work. What I cannot really understand is why did it
work.
Anyway, could you suggest a quick correct fix? I understand that the
most correct fix is the rework of the font model at all, so I would
make it the way which is quick and correct enough.
Big K