From: Jason Rumney Date: Sat, 25 Nov 2000 16:24:43 +0000 (+0000) Subject: Do not call set-locale-environment until after terminal is initialized. X-Git-Tag: emacs-pretest-21.0.92~72 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=640a9cdd27498e747fcbce0a542717cce45c9870;p=emacs.git Do not call set-locale-environment until after terminal is initialized. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8f0103d2a99..9b8beee5d6c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2000-11-25 Jason Rumney + + * startup.el (command-line): Call set-locale-environment after + Window System init file is read, as it can result in a call to + redraw-frame. + 2000-11-25 Eli Zaretskii * 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'." (string= vc "simple")) (setq version-control 'never)))) - (set-locale-environment nil) - ;;! This has been commented out; I currently find the behavior when ;;! split-window-keep-point is nil disturbing, but if I can get used ;;! 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'." (not noninteractive)) (setq command-line-args (tty-handle-args command-line-args))) + (set-locale-environment nil) + (let ((done nil) (args (cdr command-line-args)))