dwm-meillo
diff font.c @ 9:d567f430a81d
fixed several stuff (gridwm gets better and better)
author | Anselm R. Garbe <garbeam@wmii.de> |
---|---|
date | Tue, 11 Jul 2006 12:52:57 +0200 |
parents | a79188fe4a40 |
children |
line diff
1.1 --- a/font.c Tue Jul 11 11:50:18 2006 +0200 1.2 +++ b/font.c Tue Jul 11 12:52:57 2006 +0200 1.3 @@ -38,7 +38,7 @@ 1.4 font->set = XCreateFontSet(blitz->dpy, fontname, &missing, &n, &def); 1.5 if(missing) { 1.6 while(n--) 1.7 - fprintf(stderr, "liblitz: missing fontset: %s\n", missing[n]); 1.8 + fprintf(stderr, "missing fontset: %s\n", missing[n]); 1.9 XFreeStringList(missing); 1.10 if(font->set) { 1.11 XFreeFontSet(blitz->dpy, font->set); 1.12 @@ -72,7 +72,7 @@ 1.13 font->xfont = XLoadQueryFont(blitz->dpy, fontname); 1.14 } 1.15 if (!font->xfont) { 1.16 - fprintf(stderr, "%s", "liblitz: error, cannot load 'fixed' font\n"); 1.17 + fprintf(stderr, "%s", "error, cannot load 'fixed' font\n"); 1.18 exit(1); 1.19 } 1.20 font->ascent = font->xfont->ascent;