diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2007-10-31 20:48:52 +0000 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2007-10-31 20:48:52 +0000 |
commit | f2196d574189da79aec3e99dd157c7d932bd531b (patch) | |
tree | f43d24f3e71bba4f8348b898bdf93ed18dbb93ae /lisp/net/tramp.el | |
parent | 3e1da21463d582c0f3c9f989c435b5021d09741f (diff) | |
download | emacs-f2196d574189da79aec3e99dd157c7d932bd531b.tar.gz emacs-f2196d574189da79aec3e99dd157c7d932bd531b.tar.bz2 emacs-f2196d574189da79aec3e99dd157c7d932bd531b.zip |
*** empty log message ***
Diffstat (limited to 'lisp/net/tramp.el')
-rw-r--r-- | lisp/net/tramp.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index 4bff0f8ee3f..d40d0c75813 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el @@ -5712,6 +5712,7 @@ Maybe the different regular expressions need to be tuned. (or user (user-login-name)) host method) (let ((process-environment (copy-sequence process-environment))) (setenv "TERM" tramp-terminal-type) + (setenv "LC_ALL" "C") (setenv "PROMPT_COMMAND") (setenv "PS1" "$ ") (let* ((default-directory (tramp-temporary-file-directory)) @@ -5794,6 +5795,7 @@ arguments, and xx will be used as the host name to connect to. (setq login-args (cons "-p" (cons (match-string 2 host) login-args))) (setq real-host (match-string 1 host))) (setenv "TERM" tramp-terminal-type) + (setenv "LC_ALL" "C") (setenv "PROMPT_COMMAND") (setenv "PS1" "$ ") (let* ((default-directory (tramp-temporary-file-directory)) @@ -5847,6 +5849,7 @@ prompt than you do, so it is not at all unlikely that the variable (or user "<root>") method) (let ((process-environment (copy-sequence process-environment))) (setenv "TERM" tramp-terminal-type) + (setenv "LC_ALL" "C") (setenv "PROMPT_COMMAND") (setenv "PS1" "$ ") (let* ((default-directory (tramp-temporary-file-directory)) @@ -5913,6 +5916,7 @@ log in as u2 to h2." (tramp-message 7 "Opening `%s' connection..." multi-method) (let ((process-environment (copy-sequence process-environment))) (setenv "TERM" tramp-terminal-type) + (setenv "LC_ALL" "C") (setenv "PROMPT_COMMAND") (setenv "PS1" "$ ") (let* ((default-directory (tramp-temporary-file-directory)) |