From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/64131 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: Debugger entered--Lisp error: (error "Can't rfc2047-encode `espa\x00f1ol \302\241Mira qui\x00e9n'") Date: Fri, 22 Dec 2006 15:57:29 +0900 Organization: Emacsen advocacy group Message-ID: References: <87y7p1tvbl.fsf@mandala.my-fqdn.de> NNTP-Posting-Host: dough.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1166770710 24929 80.91.229.10 (22 Dec 2006 06:58:30 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 22 Dec 2006 06:58:30 +0000 (UTC) Cc: ding@gnus.org Original-X-From: ding-owner+M12654@lists.math.uh.edu Fri Dec 22 07:58:30 2006 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from util0.math.uh.edu ([129.7.128.18]) by dough.gmane.org with esmtp (Exim 4.50) id 1GxeMM-000409-Bt for ding-account@gmane.org; Fri, 22 Dec 2006 07:58:26 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by util0.math.uh.edu with smtp (Exim 4.63) (envelope-from ) id 1GxeLj-0005aZ-Lk; Fri, 22 Dec 2006 00:57:47 -0600 Original-Received: from mx2.math.uh.edu ([129.7.128.33]) by util0.math.uh.edu with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1GxeLh-0005a8-Vz for ding@lists.math.uh.edu; Fri, 22 Dec 2006 00:57:46 -0600 Original-Received: from quimby.gnus.org ([80.91.231.51]) by mx2.math.uh.edu with esmtp (Exim 4.63) (envelope-from ) id 1GxeLd-0001Tq-UU for ding@lists.math.uh.edu; Fri, 22 Dec 2006 00:57:45 -0600 Original-Received: from orlando.hostforweb.net ([216.246.45.90]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1GxeLd-0003g2-00 for ; Fri, 22 Dec 2006 07:57:41 +0100 Original-Received: from [66.225.201.151] (port=46709 helo=mail.jpl.org) by orlando.hostforweb.net with esmtpa (Exim 4.52) id 1GxeLa-0003FN-Oi; Fri, 22 Dec 2006 00:57:39 -0600 Original-To: Jhair Tocancipa Triana X-Hashcash: 1:20:061222:jhair.tocancipa@gmail.com::lImUq4bhHUUUEgyf:000000000000000000000000000000000000BxkW X-Hashcash: 1:20:061222:ding@gnus.org::hWSINky/fqL/vG4V:00007DOS X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110006 (No Gnus v0.6) Emacs/23.0.0 (gnu/linux) Cancel-Lock: sha1:ReK7zegtxWa6E4PoyV5kIOj4m6c= X-Antivirus-Scanner: Clean mail though you should still use an Antivirus X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - orlando.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -2.5 (--) List-ID: Precedence: bulk Xref: news.gmane.org gmane.emacs.gnus.general:64131 Archived-At: >>>>> In Katsumi Yamaoka wrote: > --- nnrss.el~ 2006-05-23 14:47:29 +0000 > +++ nnrss.el 2006-12-22 04:29:51 +0000 [...] > - (mm-decode-coding-region (point-min) (point-max) cs) > - (mm-enable-multibyte)) > + (insert (prog1 > + (mm-decode-coding-string (buffer-string) cs) > + (erase-buffer) > + (mm-enable-multibyte)))) I tried as a nnrss group and realized this fix has to be done for Emacs 23 anyway. So, I've installed it in both the v5-10 branch and the trunk. 2006-12-22 Katsumi Yamaoka * nnrss.el (nnrss-fetch): Replace buffer's contents with the decoded one after turning on the buffer's multibyteness instead of decoding them directly in the unibyte buffer that causes unexpected conversion in Emacs 23 (unicode). Regards,