locale update - dwm - dynamic window manager HTML git clone https://git.parazyd.org/dwm DIR Log DIR Files DIR Refs DIR README DIR LICENSE --- DIR commit 2431ae7df7f654f6dbe5e923fadf703eaa4a7bf4 DIR parent 829b6b57e7b30bfbbf85dce718afcb2d33d2e3a9 HTML Author: Anselm R Garbe <garbeam@gmail.com> Date: Mon, 30 Jun 2008 09:57:45 +0100 locale update Diffstat: M dwm.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) --- DIR diff --git a/dwm.c b/dwm.c @@ -1704,7 +1704,9 @@ main(int argc, char *argv[]) { else if(argc != 1) eprint("usage: dwm [-v]\n"); - setlocale(LC_CTYPE, ""); + if(!setlocale(LC_CTYPE, "") || !XSupportsLocale()) + fprintf(stderr, "warning: no locale support\n"); + if(!(dpy = XOpenDisplay(0))) eprint("dwm: cannot open display\n");