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

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

[elpa] externals/async 324549b 36/60: Merge pull request #94 from astahl


From: Stefan Monnier
Subject: [elpa] externals/async 324549b 36/60: Merge pull request #94 from astahlman/auto-select-coding
Date: Tue, 8 Oct 2019 10:11:33 -0400 (EDT)

branch: externals/async
commit 324549ba1dcf610c3766c272f86bae9d2c49fc70
Merge: 66e6856 d13c0bc
Author: John Wiegley <address@hidden>
Commit: GitHub <address@hidden>

    Merge pull request #94 from astahlman/auto-select-coding
    
    Choose coding system based on environment
---
 async.el | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/async.el b/async.el
index c1fb40b..df4e52a 100644
--- a/async.el
+++ b/async.el
@@ -121,9 +121,9 @@ as follows:
 
 (defun async--receive-sexp (&optional stream)
   (let ((sexp (decode-coding-string (base64-decode-string
-                                     (read stream)) 'utf-8-unix))
+                                     (read stream)) 'utf-8-auto))
        ;; Parent expects UTF-8 encoded text.
-       (coding-system-for-write 'utf-8-unix))
+       (coding-system-for-write 'utf-8-auto))
     (if async-debug
         (message "Received sexp {{{%s}}}" (pp-to-string sexp)))
     (setq sexp (read sexp))
@@ -138,7 +138,7 @@ as follows:
        (print-circle t))
     (prin1 sexp (current-buffer))
     ;; Just in case the string we're sending might contain EOF
-    (encode-coding-region (point-min) (point-max) 'utf-8-unix)
+    (encode-coding-region (point-min) (point-max) 'utf-8-auto)
     (base64-encode-region (point-min) (point-max) t)
     (goto-char (point-min)) (insert ?\")
     (goto-char (point-max)) (insert ?\" ?\n)))
@@ -154,7 +154,7 @@ as follows:
   "Called from the child Emacs process' command-line."
   ;; Make sure 'message' and 'prin1' encode stuff in UTF-8, as parent
   ;; process expects.
-  (let ((coding-system-for-write 'utf-8-unix))
+  (let ((coding-system-for-write 'utf-8-auto))
     (setq async-in-child-emacs t
          debug-on-error async-debug)
     (if debug-on-error
@@ -287,7 +287,7 @@ returns nil.  It can still be useful, however, as an 
argument to
 `async-ready' or `async-wait'."
   (let ((sexp start-func)
        ;; Subordinate Emacs will send text encoded in UTF-8.
-       (coding-system-for-read 'utf-8-unix))
+       (coding-system-for-read 'utf-8-auto))
     (setq async--procvar
           (async-start-process
            "emacs" (file-truename



reply via email to

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