]> git.eshelyaron.com Git - emacs.git/commitdiff
(tramp-open-connection-setup-interactive-shell): Send -onlcr as well.
authorNoah Friedman <friedman@splode.com>
Fri, 9 Oct 2015 23:15:21 +0000 (16:15 -0700)
committerNoah Friedman <friedman@splode.com>
Fri, 9 Oct 2015 23:15:21 +0000 (16:15 -0700)
lisp/net/tramp-sh.el

index 433b2ba09c7d4edde2c5b2743f1b25499c67399d..7d24b54ffcb80253dd17ab425bd99b02158a5a22 100644 (file)
@@ -4153,7 +4153,7 @@ process to set up.  VEC specifies the connection."
 
     ;; Disable tab and echo expansion.
     (tramp-message vec 5 "Setting up remote shell environment")
-    (tramp-send-command vec "stty tab0 -inlcr -echo kill '^U' erase '^H'" t)
+    (tramp-send-command vec "stty tab0 -inlcr -onlcr -echo kill '^U' erase '^H'" t)
     ;; Check whether the echo has really been disabled.  Some
     ;; implementations, like busybox of embedded GNU/Linux, don't
     ;; support disabling.