Nicolas Sceaux writes:

> (without the </match> closing tag)

Of coures, sorry.

fc-list |grep -i lily
Fontconfig error: "~/.fonts.conf", line 3: mismatched tag

> LilyPond\-feta:style=Regular

Ok.

> but still no feta glyphs displayed when invoking lilypond -fgnome.

That's quite strange.  I tested on a fresh machine.  What versions of
fontconfig/gnome/pango do you use?

> I'll try with defoma.

I don't think that defoma has anything to do with it, but I would like
to see this working for others than Han-Wen (I just learned last week
that it had only worked for me, when I wondered about the lack of
enthousiasm) and me.

Jan.

PS: you may try compiling this, to see if LilyPond fonts show up in
the dialogue.

/*
    gfs.c
    gcc -o gfs gfs.c $(pkg-config --cflags --libs gtk+-2.0)
*/
#include <gtk/gtk.h>

int main(int argc, char* argv[]) {
        GtkWidget *dlg;

        gtk_init(&argc, &argv);
        dlg = gtk_font_selection_dialog_new("Select font");
        if (gtk_dialog_run(GTK_DIALOG(dlg)) == GTK_RESPONSE_OK) {
                g_print("Selected: %s.\n",
                                gtk_font_selection_dialog_get_font_name(
                                        GTK_FONT_SELECTION_DIALOG(dlg)));
        }
        return 0;
}


-- 
Jan Nieuwenhuizen <[EMAIL PROTECTED]> | GNU LilyPond - The music typesetter
http://www.xs4all.nl/~jantien       | http://www.lilypond.org


_______________________________________________
lilypond-devel mailing list
[EMAIL PROTECTED]
http://lists.gnu.org/mailman/listinfo/lilypond-devel

Reply via email to