summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Téchoueyres <pierre.techoueyres@free.fr>2018-10-14 17:49:12 +0200
committerEli Zaretskii <eliz@gnu.org>2018-10-27 12:36:00 +0300
commit106b9e138fff3a68cbfa09422441af74cdd0355a (patch)
tree1c2bac3090c06e574e002394b0d4faad3a38aa9d
parent2a416161b2dd33018a01511ac475e8ede4555ed8 (diff)
downloademacs-106b9e138fff3a68cbfa09422441af74cdd0355a.tar.gz
Unify prompt for gnupg passphrase between GNU/Linux and MS-Windows.
* lisp/epg.el (epg--start): Use 'raw-text' for coding system instead of 'binary', in order to avoid spurious carriage return on Microsoft Windows and MS-DOS when prompting for a password. (Bug#33040)
-rw-r--r--lisp/epg.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/epg.el b/lisp/epg.el
index dc0e2df5838..87b51b284ea 100644
--- a/lisp/epg.el
+++ b/lisp/epg.el
@@ -657,7 +657,7 @@ callback data (if any)."
:command (cons (epg-context-program context)
args)
:connection-type 'pipe
- :coding '(binary . binary)
+ :coding 'raw-text
:filter #'epg--process-filter
:stderr error-process
:noquery t)))