summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorMichael Albinus <michael.albinus@gmx.de>2017-03-30 17:18:17 +0200
committerMichael Albinus <michael.albinus@gmx.de>2017-03-30 17:18:17 +0200
commit1be3330b31f9c0d0d0f7d25641e8b81c807ca616 (patch)
tree49de6c064680c2beb489b618757df47bbcacc0c2 /lisp
parent2c69236b3c1daa8fcadc4b798bc8422e59245690 (diff)
downloademacs-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.el2
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