changeset 5364:99b5ca69dea7

(main) [AIX]: Call putenv.
author Richard M. Stallman <rms@gnu.org>
date Sun, 26 Dec 1993 18:05:39 +0000
parents d37a5b990e49
children 362f4c3bd99c
files src/emacs.c
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/emacs.c	Sun Dec 26 09:10:10 1993 +0000
+++ b/src/emacs.c	Sun Dec 26 18:05:39 1993 +0000
@@ -516,6 +516,12 @@
      many circumstances; it seems flimsy to put off initializing it
      until calling init_callproc.  */
   set_process_environment ();
+  /* AIX crashes are reported in system versions 3.2.3 and 3.2.4
+     if this is not done.  Do it after set_process_environment so that we
+     don't pollute Vprocess_environment.  */
+#ifdef AIX
+  putenv ("LANG=C");
+#endif
 
   init_buffer ();	/* Init default directory of main buffer */