summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorSteven Tamm <steventamm@mac.com>2005-01-17 17:32:30 +0000
committerSteven Tamm <steventamm@mac.com>2005-01-17 17:32:30 +0000
commit4042dc25935c1dcfae0863cd833982562deb1dc2 (patch)
treeaa640291dce7f2bb9ffe35be804471b83efd073c /lisp
parent68c16b5994a2e054aa67dc2af1579effef241dc8 (diff)
downloademacs-4042dc25935c1dcfae0863cd833982562deb1dc2.tar.gz
emacs-4042dc25935c1dcfae0863cd833982562deb1dc2.tar.bz2
emacs-4042dc25935c1dcfae0863cd833982562deb1dc2.zip
* textmodes/tex-mode.el (tex-start-shell): Adding -i to the
tex-shell cause to force interactivity when using pipes.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/textmodes/tex-mode.el3
2 files changed, 7 insertions, 1 deletions
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 <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.
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)