]> git.eshelyaron.com Git - emacs.git/commitdiff
Set utf8 encoding with stty in Tramp
authorMichael Albinus <michael.albinus@gmx.de>
Tue, 15 Dec 2015 22:54:11 +0000 (23:54 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Tue, 15 Dec 2015 22:54:11 +0000 (23:54 +0100)
* lisp/net/tramp-sh.el (tramp-open-connection-setup-interactive-shell):
Move up uname check.  Handle Mac OS X eol encoding.  Set utf8
encoding with stty.

lisp/net/tramp-sh.el

index ebf646f26ff6f43c039e8b3bc05b247f484b757f..6cd29c1ca6c7da8d9e14d671addf133fcc2f5593 100644 (file)
@@ -4288,6 +4288,10 @@ process to set up.  VEC specifies the connection."
                      (tramp-get-connection-property vec "uname" ""))
     (tramp-send-command vec "stty -oxtabs" t))
 
+  ;; Set utf8 encoding.  Needed for Mac OS X, for example.  This is
+  ;; non-POSIX, so we must expect errors on some systems.
+  (tramp-send-command vec "stty iutf8 2>/dev/null" t)
+
   ;; Set `remote-tty' process property.
   (let ((tty (tramp-send-command-and-read vec "echo \\\"`tty`\\\"" 'noerror)))
     (unless (zerop (length tty))