diff options
author | Michael Albinus <michael.albinus@gmx.de> | 2017-03-30 17:18:17 +0200 |
---|---|---|
committer | Michael Albinus <michael.albinus@gmx.de> | 2017-03-30 17:18:17 +0200 |
commit | 1be3330b31f9c0d0d0f7d25641e8b81c807ca616 (patch) | |
tree | 49de6c064680c2beb489b618757df47bbcacc0c2 /lisp | |
parent | 2c69236b3c1daa8fcadc4b798bc8422e59245690 (diff) | |
download | emacs-1be3330b31f9c0d0d0f7d25641e8b81c807ca616.tar.gz emacs-1be3330b31f9c0d0d0f7d25641e8b81c807ca616.tar.bz2 emacs-1be3330b31f9c0d0d0f7d25641e8b81c807ca616.zip |
* lisp/net/tramp-sh.el (tramp-get-remote-locale): Add "C.UTF-8" as candidate.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/net/tramp-sh.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/net/tramp-sh.el b/lisp/net/tramp-sh.el index e0f8d714e17..e4a48b7f8e2 100644 --- a/lisp/net/tramp-sh.el +++ b/lisp/net/tramp-sh.el @@ -5222,7 +5222,7 @@ Nonexistent directories are removed from spec." "Determine remote locale, supporting UTF8 if possible." (with-tramp-connection-property vec "locale" (tramp-send-command vec "locale -a") - (let ((candidates '("en_US.utf8" "C.utf8" "en_US.UTF-8")) + (let ((candidates '("en_US.utf8" "C.utf8" "en_US.UTF-8" "C.UTF-8")) locale) (with-current-buffer (tramp-get-connection-buffer vec) (while candidates |