]> git.eshelyaron.com Git - emacs.git/commitdiff
(term-exec-1): Bind coding-system-for-read.
authorRichard M. Stallman <rms@gnu.org>
Fri, 29 Aug 2003 16:11:53 +0000 (16:11 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 29 Aug 2003 16:11:53 +0000 (16:11 +0000)
lisp/term.el

index 9f49ee960457fc0c23781dab7f1c999769e574c4..247ce136f045e36a8a919e3f424824e59ae0b515 100644 (file)
@@ -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"