Xinqi Bao's Git
projects
/
dwm.git
/ diff
summary
|
log
|
commit
|
diff
|
tree
raw
|
patch
| inline |
side by side
(parent:
630e7ff
)
removed the hardcoded fixed fallback, it is useless in non-Latin1 environments
author
arg@mig29 <unknown>
Fri, 8 Dec 2006 09:40:09 +0000
(10:40 +0100)
committer
arg@mig29 <unknown>
Fri, 8 Dec 2006 09:40:09 +0000
(10:40 +0100)
config.mk
diff
|
blob
|
history
draw.c
diff
|
blob
|
history
diff --git
a/config.mk
b/config.mk
index
6961464
..
ee11556
100644
(file)
--- a/
config.mk
+++ b/
config.mk
@@
-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
index
eeb3e56
..
3bf687e
100644
(file)
--- a/
draw.c
+++ b/
draw.c
@@
-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;