aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason Rumney2000-11-25 16:24:43 +0000
committerJason Rumney2000-11-25 16:24:43 +0000
commit640a9cdd27498e747fcbce0a542717cce45c9870 (patch)
tree2ded30d8c8bd51f6b0eb09c2895917cdac7a8609
parentc8874f14d79c5149636dbeb7901883237ed1dd61 (diff)
downloademacs-640a9cdd27498e747fcbce0a542717cce45c9870.tar.gz
emacs-640a9cdd27498e747fcbce0a542717cce45c9870.zip
Do not call set-locale-environment until after terminal is initialized.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/startup.el4
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8f0103d2a99..9b8beee5d6c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12000-11-25 Jason Rumney <jasonr@gnu.org>
2
3 * startup.el (command-line): Call set-locale-environment after
4 Window System init file is read, as it can result in a call to
5 redraw-frame.
6
12000-11-25 Eli Zaretskii <eliz@is.elta.co.il> 72000-11-25 Eli Zaretskii <eliz@is.elta.co.il>
2 8
3 * simple.el (shell-command): Mention the effect of the prefix 9 * simple.el (shell-command): Mention the effect of the prefix
diff --git a/lisp/startup.el b/lisp/startup.el
index 5ee789657da..f4550310a87 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -621,8 +621,6 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'."
621 (string= vc "simple")) 621 (string= vc "simple"))
622 (setq version-control 'never)))) 622 (setq version-control 'never))))
623 623
624 (set-locale-environment nil)
625
626 ;;! This has been commented out; I currently find the behavior when 624 ;;! This has been commented out; I currently find the behavior when
627 ;;! split-window-keep-point is nil disturbing, but if I can get used 625 ;;! split-window-keep-point is nil disturbing, but if I can get used
628 ;;! to it, then it would be better to eliminate the option. 626 ;;! to it, then it would be better to eliminate the option.
@@ -673,6 +671,8 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'."
673 (not noninteractive)) 671 (not noninteractive))
674 (setq command-line-args (tty-handle-args command-line-args))) 672 (setq command-line-args (tty-handle-args command-line-args)))
675 673
674 (set-locale-environment nil)
675
676 (let ((done nil) 676 (let ((done nil)
677 (args (cdr command-line-args))) 677 (args (cdr command-line-args)))
678 678