]> git.eshelyaron.com Git - emacs.git/commitdiff
Include locale.h if HAVE_SETLOCALE.
authorRichard M. Stallman <rms@gnu.org>
Mon, 8 Apr 1996 23:12:25 +0000 (23:12 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 8 Apr 1996 23:12:25 +0000 (23:12 +0000)
(x_term_init): Restore LC_TIME as well as LC_NUMERIC.

src/xterm.c

index 080afbcccfbca9cdffbef4ac7ce0472fc3770f6b..62deeeb1e559f40aa99b8c7b5ae4aa6ecaa91c75 100644 (file)
@@ -105,7 +105,7 @@ extern void _XEditResCheckMessages ();
 #endif
 #endif
 
-#ifdef HAVE_X11XTR6
+#ifdef HAVE_SETLOCALE
 /* So we can do setlocale.  */
 #include <locale.h>
 #endif
@@ -5891,6 +5891,7 @@ 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
@@ -5920,6 +5921,7 @@ x_term_init (display_name, xrm_option, resource_name)
                         &argc, argv);
 
 #ifdef HAVE_X11XTR6
+    /* I think this is to compensate for XtSetLanguageProc.  */
     setlocale (LC_NUMERIC, "C");
     setlocale (LC_TIME, "C");
 #endif