]> git.eshelyaron.com Git - emacs.git/commitdiff
* textmodes/tex-mode.el (tex-start-shell): Adding -i to the
authorSteven Tamm <steventamm@mac.com>
Mon, 17 Jan 2005 17:32:30 +0000 (17:32 +0000)
committerSteven Tamm <steventamm@mac.com>
Mon, 17 Jan 2005 17:32:30 +0000 (17:32 +0000)
tex-shell cause to force interactivity when using pipes.

lisp/ChangeLog
lisp/textmodes/tex-mode.el

index efc80316d14e3e1dd242104fc87637528a6f9d96..29f41e413e5dbe415fa27b26c52604623cd8773c 100644 (file)
@@ -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.
index bac2ed6f8008c0d0bde0e633e889967dc45d0668..51be21527d6c22bbfc455187b0140a08c5ec4a49 100644 (file)
@@ -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)