(x_default_font_parameter): Try also "fixed", and signal
authorKenichi Handa <handa@m17n.org>
Fri, 16 Jun 2006 12:14:37 +0000 (12:14 +0000)
committerKenichi Handa <handa@m17n.org>
Fri, 16 Jun 2006 12:14:37 +0000 (12:14 +0000)
error here if no suitable font was found.

src/xfns.c

index b4d1661..5924ba2 100644 (file)
@@ -2986,6 +2986,7 @@ x_default_font_parameter (f, parms)
            /* 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 @@ x_default_font_parameter (f, parms)
            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);
 }