From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/53130 Path: main.gmane.org!not-for-mail From: Dave Love Newsgroups: gmane.emacs.gnus.general Subject: Re: viewing raw article Date: Thu, 12 Jun 2003 23:43:54 +0100 Sender: ding-owner@lists.math.uh.edu Message-ID: References: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1055457694 22590 80.91.224.249 (12 Jun 2003 22:41:34 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Thu, 12 Jun 2003 22:41:34 +0000 (UTC) Cc: ding@gnus.org Original-X-From: ding-owner+M1674@lists.math.uh.edu Fri Jun 13 00:41:30 2003 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19Qal8-0005rl-00 for ; Fri, 13 Jun 2003 00:41:30 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19Qanc-0001Uo-00; Thu, 12 Jun 2003 17:44:04 -0500 Original-Received: from sclp3.sclp.com ([64.157.176.121]) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19QanX-0001U4-00 for ding@lists.math.uh.edu; Thu, 12 Jun 2003 17:43:59 -0500 Original-Received: (qmail 34204 invoked by alias); 12 Jun 2003 22:43:58 -0000 Original-Received: (qmail 34199 invoked from network); 12 Jun 2003 22:43:58 -0000 Original-Received: from albion.dl.ac.uk (148.79.80.39) by sclp3.sclp.com with SMTP; 12 Jun 2003 22:43:58 -0000 Original-Received: from fx by albion.dl.ac.uk with local (Exim 3.36 #1 (Debian)) id 19QanS-0000jV-00; Thu, 12 Jun 2003 23:43:54 +0100 Original-To: Vladimir Volovich User-Agent: Gnus/5.1003 (Gnus v5.10.3) Emacs/21.2 (gnu/linux) Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:53130 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:53130 Vladimir Volovich writes: > Hi! > > when i view the raw article using C-u g, gnus used to show 8-bit > characters as \200, etc, but it had changed recently and gnus now > shows such characters as eight-bit-graphic charset which appears to > use the iso8859-1 encoded font. Do you really mean \200? That's not in 8859-1 or eight-bit-graphic, though I suppose such a font might have a glyph there. Unless you change the display table, it's displayed in octal. eight-bit-graphic (\240-\377) is displayed with glyphs from your default font. This is bogus, but we couldn't persuade rms to change it a while back. (That's nothing to do with Gnus.) I recommend: (when default-enable-multibyte-characters (dotimes (i 128) (aset standard-display-table (+ 128 i) nil)))