(main): Set LANG=C iff AX3_2 defined.
authorDave Love <fx@gnu.org>
Wed, 1 Dec 1999 12:13:13 +0000 (12:13 +0000)
committerDave Love <fx@gnu.org>
Wed, 1 Dec 1999 12:13:13 +0000 (12:13 +0000)
src/ChangeLog
src/emacs.c

index 9e5d8f5..c9a645d 100644 (file)
@@ -1,3 +1,12 @@
+1999-12-01  Dave Love  <fx@gnu.org>
+
+       * emacs.c (main): Set LANG=C iff AX3_2 defined.
+
+1999-11-28  eliz  <eliz@dlpx1>
+
+       * emacs.c (synchronize_locale): Avoid compiler warnings about
+       pointer type mismatch.
+
 1999-11-28  Gerd Moellmann  <gerd@gnu.org>
 
        * window.c (Fwindow_end): Don't call temp_set_pt_both with
index cb08e2f..5212256 100644 (file)
@@ -1189,7 +1189,8 @@ the Bugs section of the Emacs manual or the file BUGS.\n", argv[0]);
   /* 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
+  /* Setting LANG here will defeat the startup locale processing...  */
+#ifdef AIX3_2
   putenv ("LANG=C");
 #endif