From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.ciao.gmane.io!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Two errors in 27.* with Windows Date: Thu, 26 Mar 2020 20:55:52 +0200 Message-ID: <834kub9c93.fsf@gnu.org> References: <86369vt7ce.fsf@csic.es> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Info: ciao.gmane.io; posting-host="ciao.gmane.io:159.69.161.202"; logging-data="124417"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: Juan =?utf-8?Q?Jos=C3=A9_Garc=C3=ADa-Ripoll?= Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Thu Mar 26 19:56:37 2020 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1jHXgC-000WEp-EP for ged-emacs-devel@m.gmane-mx.org; Thu, 26 Mar 2020 19:56:36 +0100 Original-Received: from localhost ([::1]:57728 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jHXgB-0000x2-HS for ged-emacs-devel@m.gmane-mx.org; Thu, 26 Mar 2020 14:56:35 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:53474) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jHXfZ-0000VM-Bn for emacs-devel@gnu.org; Thu, 26 Mar 2020 14:55:58 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:40511) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1jHXfZ-0004qO-7s; Thu, 26 Mar 2020 14:55:57 -0400 Original-Received: from [176.228.60.248] (port=2276 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1jHXfY-00084V-27; Thu, 26 Mar 2020 14:55:56 -0400 In-Reply-To: <86369vt7ce.fsf@csic.es> (juanjose.garciaripoll@gmail.com) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:245815 Archived-At: > From: Juan José García-Ripoll > > Date: Thu, 26 Mar 2020 17:21:37 +0100 > > The following errors rendered my Gnus installation unusable until I > found some workarounds. I believe they should be corrected before > release. However, I still have no clear solution for the second. Please report each problem separately using "M-x report-emacs-bug". That will allow to deal with each one in a separate thread. Also, the bug tracker is the proper place for discussing bugs and looking for their solutions. > Second problem: output from gpg.exe is read in binary mode, and > corrupted because of ^M characters. I cannot find out what defines the > mode of the buffer where the output of CALL-PROCESSS is written to. Help > in debugging this is welcome. > > In 27.0.90: > CALL-PROCESS: > Args: ("c:/Program Files (x86)/GnuPG/bin/gpg.exe" nil (t nil) nil "--with-colons" "--list-config") > Coding system ((coding-system-for-read binary) (buffer-file-coding-system utf-8-dos) (inhibit-eol-conversion nil)) > > In 26.3: > CALL-PROCESS: > Args: ("c:/Program Files (x86)/GnuPG/bin/gpg.exe" nil (t nil) nil "--with-colons" "--list-config") > Coding system ((coding-system-for-read nil) (buffer-file-coding-system iso-latin-1-dos) (inhibit-eol-conversion nil)) What does gpg.exe output in this case? Does it output human-readable text, or does it output binary byte stream? If the latter, how come ^M corruption is an issue?