From: Kazuhiro Ito Date: Fri, 9 Aug 2024 12:28:41 +0000 (+0900) Subject: * lisp/epg.el (epg--start): Don't convert EOL on encoding (bug#72542). X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e6441fda020ceca666812ac8052b3f8f0dacbeca;p=emacs.git * lisp/epg.el (epg--start): Don't convert EOL on encoding (bug#72542). (cherry picked from commit 4dd953d3cc37a6f84458eccd6fc81966fa7207f5) --- diff --git a/lisp/epg.el b/lisp/epg.el index 494bdd68c41..6b4db52f298 100644 --- a/lisp/epg.el +++ b/lisp/epg.el @@ -683,7 +683,7 @@ callback data (if any)." ;; We encode and decode ourselves the text sent/received from gpg, ;; so the below disables automatic encoding and decoding by ;; subprocess communications routines. - (set-process-coding-system process 'raw-text 'raw-text) + (set-process-coding-system process 'raw-text 'raw-text-unix) (setf (epg-context-process context) process))) (defun epg--process-filter (process input)