diff options
| author | Anselm R Garbe <garbeam@gmail.com> | 2008-08-18 09:31:55 +0100 | 
|---|---|---|
| committer | Anselm R Garbe <garbeam@gmail.com> | 2008-08-18 09:31:55 +0100 | 
| commit | b48fa3f101d2805882ab6a2a095e541b0cfe83f6 (patch) | |
| tree | d80250964be2c29a0488f2893654944977b67578 | |
| parent | 051a404b66dfa4f87f98411da61320a93a146ec8 (diff) | |
| download | dwm-b48fa3f101d2805882ab6a2a095e541b0cfe83f6.tar.gz | |
removed setlocale() stuff, not necessary if Xmb in use
| -rw-r--r-- | dwm.c | 3 | 
1 files changed, 1 insertions, 2 deletions
| @@ -24,7 +24,6 @@   * To understand everything else, start reading main().   */  #include <errno.h> -#include <locale.h>  #include <stdarg.h>  #include <stdio.h>  #include <stdlib.h> @@ -1705,7 +1704,7 @@ main(int argc, char *argv[]) {  	else if(argc != 1)  		die("usage: dwm [-v]\n"); -	if(!setlocale(LC_CTYPE, "") || !XSupportsLocale()) +	if(!XSupportsLocale())  		fprintf(stderr, "warning: no locale support\n");  	if(!(dpy = XOpenDisplay(0))) | 
