From: Steven Tamm Date: Mon, 17 Jan 2005 17:32:30 +0000 (+0000) Subject: * textmodes/tex-mode.el (tex-start-shell): Adding -i to the X-Git-Tag: ttn-vms-21-2-B4~2707 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4042dc25935c1dcfae0863cd833982562deb1dc2;p=emacs.git * textmodes/tex-mode.el (tex-start-shell): Adding -i to the tex-shell cause to force interactivity when using pipes. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index efc80316d14..29f41e413e5 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2005-01-17 Steven Tamm + + * textmodes/tex-mode.el (tex-start-shell): Adding -i to the + tex-shell cause to force interactivity when using pipes. + 2005-01-17 Kim F. Storm * simple.el (just-one-space): Make arg optional. diff --git a/lisp/textmodes/tex-mode.el b/lisp/textmodes/tex-mode.el index bac2ed6f800..51be21527d6 100644 --- a/lisp/textmodes/tex-mode.el +++ b/lisp/textmodes/tex-mode.el @@ -1495,7 +1495,8 @@ Mark is left at original location." (make-comint "tex-shell" (or tex-shell-file-name (getenv "ESHELL") shell-file-name) - nil) + nil + "-i") (let ((proc (get-process "tex-shell"))) (set-process-sentinel proc 'tex-shell-sentinel) (set-process-query-on-exit-flag proc nil)