diff options
| author | Steven Tamm | 2005-01-17 17:32:30 +0000 |
|---|---|---|
| committer | Steven Tamm | 2005-01-17 17:32:30 +0000 |
| commit | 4042dc25935c1dcfae0863cd833982562deb1dc2 (patch) | |
| tree | aa640291dce7f2bb9ffe35be804471b83efd073c | |
| parent | 68c16b5994a2e054aa67dc2af1579effef241dc8 (diff) | |
| download | emacs-4042dc25935c1dcfae0863cd833982562deb1dc2.tar.gz emacs-4042dc25935c1dcfae0863cd833982562deb1dc2.zip | |
* textmodes/tex-mode.el (tex-start-shell): Adding -i to the
tex-shell cause to force interactivity when using pipes.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/textmodes/tex-mode.el | 3 |
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 @@ | |||
| 1 | 2005-01-17 Steven Tamm <steventamm@mac.com> | ||
| 2 | |||
| 3 | * textmodes/tex-mode.el (tex-start-shell): Adding -i to the | ||
| 4 | tex-shell cause to force interactivity when using pipes. | ||
| 5 | |||
| 1 | 2005-01-17 Kim F. Storm <storm@cua.dk> | 6 | 2005-01-17 Kim F. Storm <storm@cua.dk> |
| 2 | 7 | ||
| 3 | * simple.el (just-one-space): Make arg optional. | 8 | * 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." | |||
| 1495 | (make-comint | 1495 | (make-comint |
| 1496 | "tex-shell" | 1496 | "tex-shell" |
| 1497 | (or tex-shell-file-name (getenv "ESHELL") shell-file-name) | 1497 | (or tex-shell-file-name (getenv "ESHELL") shell-file-name) |
| 1498 | nil) | 1498 | nil |
| 1499 | "-i") | ||
| 1499 | (let ((proc (get-process "tex-shell"))) | 1500 | (let ((proc (get-process "tex-shell"))) |
| 1500 | (set-process-sentinel proc 'tex-shell-sentinel) | 1501 | (set-process-sentinel proc 'tex-shell-sentinel) |
| 1501 | (set-process-query-on-exit-flag proc nil) | 1502 | (set-process-query-on-exit-flag proc nil) |