Do not call set-locale-environment until after terminal is initialized.
This commit is contained in:
parent
c8874f14d7
commit
640a9cdd27
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2000-11-25 Jason Rumney <jasonr@gnu.org>
|
||||
|
||||
* 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 <eliz@is.elta.co.il>
|
||||
|
||||
* simple.el (shell-command): Mention the effect of the prefix
|
||||
|
|
|
@ -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)))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue