From: Andrew C. <ak...@sh...> - 2002-05-14 14:15:43
|
> > There should be a space between `andale' and `mono' instead of a > > hyphen. > > Yes, that gets it working in 21.1 again, although it's a lot bigger > than it was. It doesn't work in 21.2.50, though. Specifying a font family for the default face doesn't seem to work if the font does not have italic and bold variants. You can try using (set-frame-font FONT-SPEC). > > You can see this by calling x-list-fonts, e.g., > > > > (x-list-fonts "*andale*") > > ("-apple-andale mono-medium-r-normal--0-0-75-75-m-0-mac-roman") > > There appears to be no such command -- at least, not that I can access: > > M-x x-list-fonts [no match] > > OTOH, list-fontsets works just fine: > > Fontset: -*-*-*-*-*-*-*-*-*-*-*-*-fontset-default > Fontset: -etl-fixed-medium-r-normal-*-16-*-*-*-*-*-fontset-mac That's because list-fontsets is an interactive function and x-list-fonts is not. Put the Lisp expression `(x-list-fonts "*andale*")' in a Lisp Interaction mode buffer such as *scratch* and hit C-j, or in any buffer and hit C-x C-e. |