Mercurial > emacs
changeset 59599:81cffebb04a5
* textmodes/tex-mode.el (tex-start-shell): Adding -i to the
tex-shell cause to force interactivity when using pipes.
author | Steven Tamm <steventamm@mac.com> |
---|---|
date | Mon, 17 Jan 2005 17:32:30 +0000 |
parents | 9782a4d3aef5 |
children | 26b237e765bf |
files | lisp/ChangeLog lisp/textmodes/tex-mode.el |
diffstat | 2 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/ChangeLog Mon Jan 17 10:56:07 2005 +0000 +++ b/lisp/ChangeLog Mon Jan 17 17:32:30 2005 +0000 @@ -1,3 +1,8 @@ +2005-01-17 Steven Tamm <steventamm@mac.com> + + * 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 <storm@cua.dk> * simple.el (just-one-space): Make arg optional.
--- a/lisp/textmodes/tex-mode.el Mon Jan 17 10:56:07 2005 +0000 +++ b/lisp/textmodes/tex-mode.el Mon Jan 17 17:32:30 2005 +0000 @@ -1495,7 +1495,8 @@ (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)