From 4042dc25935c1dcfae0863cd833982562deb1dc2 Mon Sep 17 00:00:00 2001 From: Steven Tamm Date: Mon, 17 Jan 2005 17:32:30 +0000 Subject: [PATCH] * textmodes/tex-mode.el (tex-start-shell): Adding -i to the tex-shell cause to force interactivity when using pipes. --- lisp/ChangeLog | 5 +++++ lisp/textmodes/tex-mode.el | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) 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) -- 2.39.5