From: Richard M. Stallman Date: Sat, 8 Aug 1998 22:11:22 +0000 (+0000) Subject: (x_term_init): Don't reset LC_TIME to "C", since we X-Git-Tag: emacs-20.3~123 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=036bad88d801a36057f1d22b34833eea2293df9f;p=emacs.git (x_term_init): Don't reset LC_TIME to "C", since we want strftime to be localized. --- diff --git a/src/xterm.c b/src/xterm.c index 18a6619abba..8ef162ab606 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -6958,7 +6958,6 @@ x_term_init (display_name, xrm_option, resource_name) setlocale (LC_ALL, ""); /* In case we just overrode what init_lread did, redo it. */ setlocale (LC_NUMERIC, "C"); - setlocale (LC_TIME, "C"); #endif #ifdef USE_X_TOOLKIT @@ -6990,7 +6989,6 @@ x_term_init (display_name, xrm_option, resource_name) #ifdef HAVE_X11XTR6 /* I think this is to compensate for XtSetLanguageProc. */ setlocale (LC_NUMERIC, "C"); - setlocale (LC_TIME, "C"); #endif }