diff options
| author | Dave Love | 1999-12-01 12:13:13 +0000 |
|---|---|---|
| committer | Dave Love | 1999-12-01 12:13:13 +0000 |
| commit | fa09a82db64d962d297e84f9239979e8ad7a533f (patch) | |
| tree | 1e089eb88d511f27180f19f413acad94350cb3c4 /src | |
| parent | 8f2222484972097145466879b2402a681006ad97 (diff) | |
| download | emacs-fa09a82db64d962d297e84f9239979e8ad7a533f.tar.gz emacs-fa09a82db64d962d297e84f9239979e8ad7a533f.zip | |
(main): Set LANG=C iff AX3_2 defined.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 9 | ||||
| -rw-r--r-- | src/emacs.c | 3 |
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 @@ | |||
| 1 | 1999-12-01 Dave Love <fx@gnu.org> | ||
| 2 | |||
| 3 | * emacs.c (main): Set LANG=C iff AX3_2 defined. | ||
| 4 | |||
| 5 | 1999-11-28 eliz <eliz@dlpx1> | ||
| 6 | |||
| 7 | * emacs.c (synchronize_locale): Avoid compiler warnings about | ||
| 8 | pointer type mismatch. | ||
| 9 | |||
| 1 | 1999-11-28 Gerd Moellmann <gerd@gnu.org> | 10 | 1999-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 | ||