Introduction
Introduction Statistics Contact Development Disclaimer Help
tremoved the hardcoded fixed fallback, it is useless in non-Latin1 environments…
git clone git://src.adamsgaard.dk/dwm
Log
Files
Refs
README
LICENSE
---
commit a308b7507abb77940f3b4ba34655c5a7c234bee3
parent 630e7ff26f46339f93e394dd75bd6cc8c0cc841f
Author: arg@mig29 <unknown>
Date: Fri, 8 Dec 2006 10:40:09 +0100
removed the hardcoded fixed fallback, it is useless in non-Latin1 environments
Diffstat:
M config.mk | 2 +-
M draw.c | 5 +----
2 files changed, 2 insertions(+), 5 deletions(-)
---
diff --git a/config.mk b/config.mk
t@@ -1,5 +1,5 @@
# dwm version
-VERSION = 2.6
+VERSION = 2.7
# Customize below to fit your system
diff --git a/draw.c b/draw.c
t@@ -197,10 +197,7 @@ setfont(const char *fontstr) {
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;
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.