branch: externals/auctex
commit 00c76fb740c5b4078d4efd2b544971a95d171a86
Author: Ikumi Keita <ik...@ikumi.que.jp>
Commit: Ikumi Keita <ik...@ikumi.que.jp>

    Don't discard process output with `TeX-run-silent'
    
    * tex-buf.el (TeX-run-silent): Associate the process to the buffer
    "*TeX silent*".
---
 tex-buf.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tex-buf.el b/tex-buf.el
index ef0b3dd..1d72803 100644
--- a/tex-buf.el
+++ b/tex-buf.el
@@ -1237,7 +1237,7 @@ With support for MS-DOS, especially when dviout is used 
with PC-9801 series."
     (if dir (cd dir))
     (erase-buffer)
     (let ((process (start-process (concat name " silent")
-                                 nil TeX-shell
+                                 (current-buffer) TeX-shell
                                  TeX-shell-command-option command)))
       (if TeX-after-start-process-function
          (funcall TeX-after-start-process-function process))

Reply via email to