# HG changeset patch # User Jim Blandy # Date 737076661 0 # Node ID 263aa966f2957396225713c0d8456a4a34b36419 # Parent 443605a261b3bfc327c0ddfa0b9ff2caed31cb82 * xfns.c (Fx_create_frame): Use an XLFD name for the default font, instead of "9x15" or whatever it was. diff -r 443605a261b3 -r 263aa966f295 src/xfns.c --- a/src/xfns.c Mon May 10 19:20:56 1993 +0000 +++ b/src/xfns.c Mon May 10 23:31:01 1993 +0000 @@ -1870,7 +1870,12 @@ /* Extract the window parameters from the supplied values that are needed to determine window geometry. */ - x_default_parameter (f, parms, Qfont, build_string ("9x15"), + x_default_parameter (f, parms, Qfont, + build_string + /* If we use an XLFD name for this font, the lisp code + knows how to find variants which are bold, italic, + etcetera. */ + ("-*-fixed-*-*-*-*-*-120-*-*-c-*-iso8859-1"), "font", "Font", string); x_default_parameter (f, parms, Qborder_width, make_number (2), "borderwidth", "BorderWidth", number);