using the portable Xmb+UTF-8 way of life, will see if this works well...
This commit is contained in:
parent
6b345353e3
commit
857d825eeb
1 changed files with 4 additions and 2 deletions
6
draw.c
6
draw.c
|
@ -167,14 +167,16 @@ getcolor(const char *colstr) {
|
||||||
|
|
||||||
void
|
void
|
||||||
setfont(const char *fontstr) {
|
setfont(const char *fontstr) {
|
||||||
char **missing, *def;
|
char *def, *lc, **missing;
|
||||||
int i, n;
|
int i, n;
|
||||||
|
|
||||||
setlocale(LC_CTYPE, "");
|
lc = setlocale(LC_CTYPE, NULL);
|
||||||
|
setlocale(LC_CTYPE, "UTF-8");
|
||||||
missing = NULL;
|
missing = NULL;
|
||||||
if(dc.font.set)
|
if(dc.font.set)
|
||||||
XFreeFontSet(dpy, dc.font.set);
|
XFreeFontSet(dpy, dc.font.set);
|
||||||
dc.font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def);
|
dc.font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def);
|
||||||
|
setlocale(LC_CTYPE, lc);
|
||||||
if(missing) {
|
if(missing) {
|
||||||
while(n--)
|
while(n--)
|
||||||
fprintf(stderr, "missing fontset: %s\n", missing[n]);
|
fprintf(stderr, "missing fontset: %s\n", missing[n]);
|
||||||
|
|
Loading…
Reference in a new issue