Mercurial > dwm-meillo
changeset 626:2644c951fc74
removed the hardcoded fixed fallback, it is useless in non-Latin1 environments
author | arg@mig29 |
---|---|
date | Fri, 08 Dec 2006 10:40:09 +0100 (2006-12-08) |
parents | 0811e4114faa |
children | f83ac177a3a0 |
files | config.mk draw.c |
diffstat | 2 files changed, 2 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/config.mk Thu Dec 07 16:38:57 2006 +0100 +++ b/config.mk Fri Dec 08 10:40:09 2006 +0100 @@ -1,5 +1,5 @@ # dwm version -VERSION = 2.6 +VERSION = 2.7 # Customize below to fit your system
--- a/draw.c Thu Dec 07 16:38:57 2006 +0100 +++ b/draw.c Fri Dec 08 10:40:09 2006 +0100 @@ -197,10 +197,7 @@ if(dc.font.xfont) XFreeFont(dpy, dc.font.xfont); dc.font.xfont = NULL; - dc.font.xfont = XLoadQueryFont(dpy, fontstr); - if (!dc.font.xfont) - dc.font.xfont = XLoadQueryFont(dpy, "fixed"); - if (!dc.font.xfont) + if(!(dc.font.xfont = XLoadQueryFont(dpy, fontstr))) eprint("error, cannot init 'fixed' font\n"); dc.font.ascent = dc.font.xfont->ascent; dc.font.descent = dc.font.xfont->descent;