# HG changeset patch # User Kenichi Handa # Date 877608187 0 # Node ID 7ebe9039c4f9285c22d7cb43f66bf146b0a274df # Parent 9a3343c36e83c651b71991d71353fb6a912ede23 (term-exec-1): Bind inhibit-eol-conversion to t before calling start-process. diff -r 9a3343c36e83 -r 7ebe9039c4f9 lisp/term.el --- a/lisp/term.el Thu Oct 23 12:01:50 1997 +0000 +++ b/lisp/term.el Thu Oct 23 12:03:07 1997 +0000 @@ -1432,7 +1432,10 @@ (format "LINES=%d" term-height) (format "COLUMNS=%d" term-width)) process-environment)) - (process-connection-type t)) + (process-connection-type t) + ;; We should suppress conversion of end-of-line format. + (inhibit-eol-conversion t) + ) (apply 'start-process name buffer "/bin/sh" "-c" (format "stty -nl echo rows %d columns %d sane 2>/dev/null;\