branch: externals/plz
commit b896c41d719260d76ec0490011863674c4b5270e
Author: Adam Porter <[email protected]>
Commit: Adam Porter <[email protected]>

    Change: Generate buffer for STDERR
    
    Trying to get rid of the "Process plz-request-curl stderr<1> finished"
    garbage in respond bodies, again!
---
 plz.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/plz.el b/plz.el
index 9a7258e3c6..49c515acf1 100644
--- a/plz.el
+++ b/plz.el
@@ -412,7 +412,8 @@ NOQUERY is passed to `make-process', which see.
            ;; directory is, but this seems to make sense, and it should still 
exist.
            temporary-file-directory)
          (process-buffer (generate-new-buffer " *plz-request-curl*"))
-         (stderr-process (make-pipe-process :name "plz-stderr"
+         (stderr-process (make-pipe-process :name "plz-request-curl-stderr"
+                                            :buffer (generate-new-buffer " 
*plz-request-curl-stderr*")
                                             :noquery t
                                             :sentinel #'plz--stderr-sentinel))
          (process (make-process :name "plz-request-curl"

Reply via email to