emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] master 6f2ae7f 09/29: Merge pull request #621 from juergenhoetzel


From: Dmitry Gutov
Subject: [elpa] master 6f2ae7f 09/29: Merge pull request #621 from juergenhoetzel/use-pipes
Date: Tue, 28 Mar 2017 20:50:34 -0400 (EDT)

branch: master
commit 6f2ae7fc11872b2bbb4ffd94f04d7cd53aa97a9a
Merge: ec7a860 92b0bf7
Author: Dmitry Gutov <address@hidden>
Commit: GitHub <address@hidden>

    Merge pull request #621 from juergenhoetzel/use-pipes
    
    Use pipes instead of PTYs to receive output from Clang
---
 company-clang.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/company-clang.el b/company-clang.el
index 54d4b9b..36d04ec 100644
--- a/company-clang.el
+++ b/company-clang.el
@@ -208,8 +208,9 @@ or automatically through a custom 
`company-clang-prefix-guesser'."
       (with-current-buffer buf
         (erase-buffer)
         (setq buffer-undo-list t))
-      (let ((process (apply #'start-process "company-clang" buf
-                            company-clang-executable args)))
+      (let* ((process-connection-type nil)
+             (process (apply #'start-process "company-clang" buf
+                             company-clang-executable args)))
         (set-process-sentinel
          process
          (lambda (proc status)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]