From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/46157 Path: main.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.gnus.general Subject: Re: Decoding ISO8859-15 -- offending headers Date: Sun, 18 Aug 2002 13:08:59 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1029668940 15681 127.0.0.1 (18 Aug 2002 11:09:00 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 18 Aug 2002 11:09:00 +0000 (UTC) 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 17gNvW-00044K-00 for ; Sun, 18 Aug 2002 13:08:58 +0200 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 17gNw0-0004E2-00; Sun, 18 Aug 2002 06:09:28 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sun, 18 Aug 2002 06:09:58 -0500 (CDT) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id GAA20821 for ; Sun, 18 Aug 2002 06:09:45 -0500 (CDT) Original-Received: (qmail 14649 invoked by alias); 18 Aug 2002 11:09:05 -0000 Original-Received: (qmail 14644 invoked from network); 18 Aug 2002 11:09:04 -0000 Original-Received: from 178.230.13.217.in-addr.dgcsystems.net (HELO yxa.extundo.com) (217.13.230.178) by gnus.org with SMTP; 18 Aug 2002 11:09:04 -0000 Original-Received: from latte.josefsson.org (yxa.extundo.com [217.13.230.178]) (authenticated bits=0) by yxa.extundo.com (8.12.5/8.12.5) with ESMTP id g7IB90i2006449; Sun, 18 Aug 2002 13:09:00 +0200 Original-To: ding@gnus.org, TSUCHIYA Masatoshi Mail-Copies-To: nobody X-Hashcash: 0:020818:ding@gnus.org:83cef61396af84c6 X-Hashcash: 0:020818:tsuchiya@pine.kuee.kyoto-u.ac.jp:1781b7a9307ba654 Original-Lines: 29 User-Agent: Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.3.50 (i686-pc-linux-gnu) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:46157 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:46157 Jonas Steverud writes: > What is the function that prints the contents to the Group buffer > named? It would help me somewhat to debug this. I think I found the patch. I'll boot XEmacs to see what is breaking. Masatoshi, do you remember the details? * gnus-group.el (gnus-group-name-decode): Don't test multibyte-string, because it breaks XEmacs. Index: gnus-group.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/gnus-group.el,v retrieving revision 6.68 retrieving revision 6.69 diff -u -p -r6.68 -r6.69 --- gnus-group.el 2002/02/20 00:15:31 6.68 +++ gnus-group.el 2002/02/20 16:15:00 6.69 @@ -1030,8 +1030,7 @@ The following commands are available: result))) (defun gnus-group-name-decode (string charset) - (if (and string charset (featurep 'mule) - (not (mm-multibyte-string-p string))) + (if (and string charset (featurep 'mule)) (mm-decode-coding-string string charset) string))