aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog9
-rw-r--r--src/emacs.c3
2 files changed, 11 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 9e5d8f5af24..c9a645dd0cf 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,12 @@
11999-12-01 Dave Love <fx@gnu.org>
2
3 * emacs.c (main): Set LANG=C iff AX3_2 defined.
4
51999-11-28 eliz <eliz@dlpx1>
6
7 * emacs.c (synchronize_locale): Avoid compiler warnings about
8 pointer type mismatch.
9
11999-11-28 Gerd Moellmann <gerd@gnu.org> 101999-11-28 Gerd Moellmann <gerd@gnu.org>
2 11
3 * window.c (Fwindow_end): Don't call temp_set_pt_both with 12 * window.c (Fwindow_end): Don't call temp_set_pt_both with
diff --git a/src/emacs.c b/src/emacs.c
index cb08e2f4413..521225687df 100644
--- a/src/emacs.c
+++ b/src/emacs.c
@@ -1189,7 +1189,8 @@ the Bugs section of the Emacs manual or the file BUGS.\n", argv[0]);
1189 /* AIX crashes are reported in system versions 3.2.3 and 3.2.4 1189 /* AIX crashes are reported in system versions 3.2.3 and 3.2.4
1190 if this is not done. Do it after set_process_environment so that we 1190 if this is not done. Do it after set_process_environment so that we
1191 don't pollute Vprocess_environment. */ 1191 don't pollute Vprocess_environment. */
1192#ifdef AIX 1192 /* Setting LANG here will defeat the startup locale processing... */
1193#ifdef AIX3_2
1193 putenv ("LANG=C"); 1194 putenv ("LANG=C");
1194#endif 1195#endif
1195 1196