From: Dana Jansens Date: Mon, 13 Jan 2003 01:41:06 +0000 (+0000) Subject: setup the locale on the X server on start X-Git-Url: https://git.brokenzipper.com/gitweb?a=commitdiff_plain;h=120ed7a650c31fc7aa6443f0bd408f041e2d8a86;p=chaz%2Fopenbox setup the locale on the X server on start --- diff --git a/otk/display.cc b/otk/display.cc index 97e77de1..59a48aee 100644 --- a/otk/display.cc +++ b/otk/display.cc @@ -100,7 +100,11 @@ line argument.\n\n")); printf(_("Couldn't mark display connection as close-on-exec.\n\n")); ::exit(1); } - + if (! XSupportsLocale()) + printf(_("X server does not support locale.\n")); + if (XSetLocaleModifiers("") == NULL) + printf(_("Cannot set locale modifiers for the X server.\n")); + // set our error handler for X errors XSetErrorHandler(xerrorHandler);