I found the first Emacs commit breaks this by default (that is, even
when --xrm "Emacs.FontBackend: xft" is not specified), but it isn’t very
interesting.

commit b0bd8f3d41b34f1cd857443fec1e77e060c2b324
Author: Chong Yidong <[EMAIL PROTECTED]>
Date:   Wed Jun 25 22:29:20 2008 +0000

    (x_default_font_parameter): If Xft is available, first try
    Monospace-12 for the default font.

diff --git a/src/xfns.c b/src/xfns.c
index 2bf4afa..dc9d98f 100644
--- a/src/xfns.c
+++ b/src/xfns.c
@@ -3071,10 +3071,13 @@ x_default_font_parameter (f, parms)
   if (! STRINGP (font))
     {
       char *names[]
-       = { "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1",
-           "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1",
+       = {
+#ifdef HAVE_XFT
            /* This will find the normal Xft font.  */
-           "monospace-12",
+           "Monospace-12",
+#endif
+           "-adobe-courier-medium-r-*-*-*-120-*-*-*-*-iso8859-1",
+           "-misc-fixed-medium-r-normal-*-*-140-*-*-c-*-iso8859-1",
            "-*-*-medium-r-normal-*-*-140-*-*-c-*-iso8859-1",
            /* This was formerly the first thing tried, but it finds
               too many fonts and takes too long.  */

-- 
[intrepid] emacs windows don’t display after compiz 0.7.6 upgrade
https://bugs.launchpad.net/bugs/239917
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to