From f44a5d5870d188a4de8aab8c479ed0fdf8d572a3 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Fri, 29 Aug 2003 16:11:53 +0000 Subject: [PATCH] (term-exec-1): Bind coding-system-for-read. --- lisp/term.el | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lisp/term.el b/lisp/term.el index 9f49ee96045..247ce136f04 100644 --- a/lisp/term.el +++ b/lisp/term.el @@ -1347,6 +1347,8 @@ buffer. The hook term-exec-hook is run after each exec." (process-connection-type t) ;; We should suppress conversion of end-of-line format. (inhibit-eol-conversion t) + ;; inhibit-eol-conversion doesn't seem to do the job, but this does. + (coding-system-for-read 'unknown-unix) ) (apply 'start-process name buffer "/bin/sh" "-c" -- 2.39.2