diff options
| author | arg@mig29 <unknown> | 2006-12-07 09:47:55 +0100 | 
|---|---|---|
| committer | arg@mig29 <unknown> | 2006-12-07 09:47:55 +0100 | 
| commit | 857d825eeb9f0d91a3d8a2507e8955196646f9a1 (patch) | |
| tree | bf00728ec741f91385213a9f62d42a2e3001d26d | |
| parent | 6b345353e37e8af8eaa83956ef378015c0046eda (diff) | |
using the portable Xmb+UTF-8 way of life, will see if this works well...
| -rw-r--r-- | draw.c | 6 | 
1 files changed, 4 insertions, 2 deletions
| @@ -167,14 +167,16 @@ getcolor(const char *colstr) {  void  setfont(const char *fontstr) { -	char **missing, *def; +	char *def, *lc, **missing;  	int i, n; -	setlocale(LC_CTYPE, ""); +	lc = setlocale(LC_CTYPE, NULL); +	setlocale(LC_CTYPE, "UTF-8");  	missing = NULL;  	if(dc.font.set)  		XFreeFontSet(dpy, dc.font.set);  	dc.font.set = XCreateFontSet(dpy, fontstr, &missing, &n, &def); +	setlocale(LC_CTYPE, lc);  	if(missing) {  		while(n--)  			fprintf(stderr, "missing fontset: %s\n", missing[n]); | 
