From: Pierre Téchoueyres Date: Sun, 14 Oct 2018 15:49:12 +0000 (+0200) Subject: Unify prompt for gnupg passphrase between GNU/Linux and MS-Windows. X-Git-Tag: emacs-26.1.90~54 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=106b9e1;p=emacs.git 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) --- 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)))