From 120ed7a650c31fc7aa6443f0bd408f041e2d8a86 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 13 Jan 2003 01:41:06 +0000 Subject: [PATCH] setup the locale on the X server on start --- otk/display.cc | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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); -- 2.45.2