From 4dd953d3cc37a6f84458eccd6fc81966fa7207f5 Mon Sep 17 00:00:00 2001 From: Kazuhiro Ito Date: Fri, 9 Aug 2024 21:28:41 +0900 Subject: [PATCH] * lisp/epg.el (epg--start): Don't convert EOL on encoding (bug#72542). --- lisp/epg.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)