diff options
author | Dave Love <fx@gnu.org> | 1999-12-01 12:13:13 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 1999-12-01 12:13:13 +0000 |
commit | fa09a82db64d962d297e84f9239979e8ad7a533f (patch) | |
tree | 1e089eb88d511f27180f19f413acad94350cb3c4 /src/emacs.c | |
parent | 8f2222484972097145466879b2402a681006ad97 (diff) | |
download | emacs-fa09a82db64d962d297e84f9239979e8ad7a533f.tar.gz |
(main): Set LANG=C iff AX3_2 defined.
Diffstat (limited to 'src/emacs.c')
-rw-r--r-- | src/emacs.c | 3 |
1 files changed, 2 insertions, 1 deletions
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]); /* 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 |