aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKazuhiro Ito2024-08-09 21:28:41 +0900
committerEli Zaretskii2024-08-10 10:54:18 +0300
commit4dd953d3cc37a6f84458eccd6fc81966fa7207f5 (patch)
treeb00464d4dab1e14a4ae7d6caf8bd5e18e662176f
parent5cace09ed0495aff620549e83b4e0dd9d631ecd8 (diff)
downloademacs-4dd953d3cc37a6f84458eccd6fc81966fa7207f5.tar.gz
emacs-4dd953d3cc37a6f84458eccd6fc81966fa7207f5.zip
* lisp/epg.el (epg--start): Don't convert EOL on encoding (bug#72542).
-rw-r--r--lisp/epg.el2
1 files changed, 1 insertions, 1 deletions
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)."
683 ;; We encode and decode ourselves the text sent/received from gpg, 683 ;; We encode and decode ourselves the text sent/received from gpg,
684 ;; so the below disables automatic encoding and decoding by 684 ;; so the below disables automatic encoding and decoding by
685 ;; subprocess communications routines. 685 ;; subprocess communications routines.
686 (set-process-coding-system process 'raw-text 'raw-text) 686 (set-process-coding-system process 'raw-text 'raw-text-unix)
687 (setf (epg-context-process context) process))) 687 (setf (epg-context-process context) process)))
688 688
689(defun epg--process-filter (process input) 689(defun epg--process-filter (process input)