From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.bugs Subject: bug#50152: Weird characters (eg: =?UTF-8?Q?=C3=A2\200\220?=) are displayed when browsing man pages in Emacs Date: Sat, 21 Aug 2021 19:59:31 +0300 Message-ID: <83v93yybrg.fsf@gnu.org> References: Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="40713"; mail-complaints-to="usenet@ciao.gmane.io" Cc: 50152@debbugs.gnu.org To: Jehu Amanna Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Sat Aug 21 19:00:11 2021 Return-path: Envelope-to: geb-bug-gnu-emacs@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 1mHULr-000ANe-3d for geb-bug-gnu-emacs@m.gmane-mx.org; Sat, 21 Aug 2021 19:00:11 +0200 Original-Received: from localhost ([::1]:46118 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mHULq-0008Jx-2c for geb-bug-gnu-emacs@m.gmane-mx.org; Sat, 21 Aug 2021 13:00:10 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:57874) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mHULj-0008Jn-1P for bug-gnu-emacs@gnu.org; Sat, 21 Aug 2021 13:00:03 -0400 Original-Received: from debbugs.gnu.org ([209.51.188.43]:54477) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1mHULi-0001GD-Q1 for bug-gnu-emacs@gnu.org; Sat, 21 Aug 2021 13:00:02 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1mHULi-0007b7-OZ for bug-gnu-emacs@gnu.org; Sat, 21 Aug 2021 13:00:02 -0400 X-Loop: help-debbugs@gnu.org Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 21 Aug 2021 17:00:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 50152 X-GNU-PR-Package: emacs Original-Received: via spool by 50152-submit@debbugs.gnu.org id=B50152.162956519429159 (code B ref 50152); Sat, 21 Aug 2021 17:00:02 +0000 Original-Received: (at 50152) by debbugs.gnu.org; 21 Aug 2021 16:59:54 +0000 Original-Received: from localhost ([127.0.0.1]:37790 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mHULa-0007aF-A7 for submit@debbugs.gnu.org; Sat, 21 Aug 2021 12:59:54 -0400 Original-Received: from eggs.gnu.org ([209.51.188.92]:41756) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1mHULY-0007Zz-Sx for 50152@debbugs.gnu.org; Sat, 21 Aug 2021 12:59:53 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]:50176) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1mHULT-000158-I0; Sat, 21 Aug 2021 12:59:47 -0400 Original-Received: from 84.94.185.95.cable.012.net.il ([84.94.185.95]:2297 helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1mHULR-0005Wr-FY; Sat, 21 Aug 2021 12:59:45 -0400 In-Reply-To: (message from Jehu Amanna on Sat, 21 Aug 2021 17:37:24 +0530) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "bug-gnu-emacs" Xref: news.gmane.io gmane.emacs.bugs:212381 Archived-At: > From: Jehu Amanna > Date: Sat, 21 Aug 2021 17:37:24 +0530 > > Vist the man page in this following order : C-x RET c utf-8 RET M-x man RET memset RET > > The following is the output: > > MEMSET(3) Linux Programmer's Manual MEMSET(3) > > NAME > memset - fill memory with a constant byte > > SYNOPSIS > #include > > void *memset(void *s, int c, size_t n); > > DESCRIPTION > The memset() function fills the first n bytes of the memory area > pointed to by s with the constant byte c. > > RETURN VALUE > The memset() function returns a pointer to the memory area s. > > ATTRIBUTES > For an explanation of the terms used in this section, see atâ€â€ > tributes(7). It's very strange, because I cannot reproduce the problem on my system, with UTF-8 encoded man pages, although my system's locale-coding-system is also iso-latin-1. When I override the default encoding with "C-x RET c", the man pages are displayed correctly. >From the screenshot you sent, I see that it was taken not in "emacs -Q", but on Reddit you said that "emacs -Q" shows the same problem?