From 2cd370ddc78ce270651fde307fc61e17a3dd74b1 Mon Sep 17 00:00:00 2001 From: Peter Stuge Date: Thu, 26 Aug 2010 04:14:27 +0200 Subject: [PATCH] Calculate text and window size from LC_CTYPE instead of LC_TIME LC_TIME only defines what will be displayed, LC_CTYPE is what defines the character encoding. References: Bug 15903 - LANG=en_US xclock -digital -font fixed has wrong size https://bugs.freedesktop.org/show_bug.cgi?id=15903 --- Clock.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Clock.c b/Clock.c index 8f78cab..c7a74e0 100644 --- a/Clock.c +++ b/Clock.c @@ -591,7 +591,7 @@ Initialize (Widget request, Widget new, ArgList args, Cardinal *num_args) w->clock.utf8 = False; if (!no_locale) { - char *time_locale = setlocale(LC_TIME, NULL); + char *time_locale = setlocale(LC_CTYPE, NULL); if (strstr(time_locale, "UTF-8") || strstr(time_locale, "utf8")) { w->clock.utf8 = True; -- 1.7.2