# HG changeset patch # User Kenichi Handa # Date 1150460077 0 # Node ID 5981c99ef5bafc0c292543e5d8bcf22b788292e1 # Parent 2457d1153a8b3837f8df79f29496ccafe4678b40 (x_default_font_parameter): Try also "fixed", and signal error here if no suitable font was found. diff -r 2457d1153a8b -r 5981c99ef5ba src/xfns.c --- a/src/xfns.c Fri Jun 16 12:13:36 2006 +0000 +++ b/src/xfns.c Fri Jun 16 12:14:37 2006 +0000 @@ -2986,6 +2986,7 @@ /* If those didn't work, look for something which will at least work. */ "-*-fixed-*-*-*-*-*-140-*-*-c-*-iso8859-1", + "fixed", NULL }; int i; @@ -2996,7 +2997,7 @@ break; } if (NILP (font)) - font = build_string ("fixed"); + error ("No suitable font was found"); } x_default_parameter (f, parms, Qfont, font, "font", "Font", RES_TYPE_STRING); }