* lisp/epg.el (epg--start): Don't convert EOL on encoding (bug#72542).

This commit is contained in:
Kazuhiro Ito 2024-08-09 21:28:41 +09:00 committed by Eli Zaretskii
parent 5cace09ed0
commit 4dd953d3cc

View file

@ -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)