From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/38459 Path: main.gmane.org!not-for-mail From: Nuutti Kotivuori Newsgroups: gmane.emacs.gnus.general Subject: Re: '.' at the beginning of summary buffer lines Date: Fri, 31 Aug 2001 17:08:16 +0300 Message-ID: <87itf45nlb.fsf@smarttrust.com> References: <871ylyiv43.fsf@deneb.enyo.de> <87heuuhcon.fsf@deneb.enyo.de> <87bsky95kx.fsf@smarttrust.com> <87y9o16al5.fsf@smarttrust.com> <87sne97iuh.fsf@mclinux.com> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1035174318 22548 80.91.224.250 (21 Oct 2002 04:25:18 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 04:25:18 +0000 (UTC) Return-Path: Return-Path: Original-Received: (qmail 21054 invoked from network); 31 Aug 2001 14:08:45 -0000 Original-Received: from smtp.dave.sonera.fi (131.177.130.21) by gnus.org with SMTP; 31 Aug 2001 14:08:44 -0000 Original-Received: from kotivnu1-nb.etela.sonera.fi ([131.177.205.219]:32880 "EHLO oro") by inside.dave.sonera.fi with ESMTP id ; Fri, 31 Aug 2001 17:08:22 +0300 Original-Received: from naked by oro with local (Exim 3.32 #1 (Debian)) id 15coy0-0002mG-00 for ; Fri, 31 Aug 2001 17:08:16 +0300 Original-To: ding@gnus.org In-Reply-To: <87sne97iuh.fsf@mclinux.com> (Josh Huber's message of "Thu, 30 Aug 2001 09:55:34 -0400") User-Agent: Gnus/5.090004 (Oort Gnus v0.04) XEmacs/21.4 (Artificial Intelligence) Original-Lines: 19 Xref: main.gmane.org gmane.emacs.gnus.general:38459 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:38459 --=-=-= Josh Huber wrote: > Nuutti Kotivuori writes: >> No idea - I have gotten it to work in XEmacs with MULE-UCS and a >> small hack to Gnus code. > > What did you hack in the Gnus code? Just a small thing: --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=utf-8-patch Index: mm-util.el =================================================================== RCS file: /usr/local/cvsroot/gnus/lisp/mm-util.el,v retrieving revision 6.22 diff -u -r6.22 mm-util.el --- mm-util.el 2001/08/04 02:13:35 6.22 +++ mm-util.el 2001/08/31 14:06:06 @@ -356,10 +356,7 @@ (when (memq 'iso-2022-jp-2 charsets) (setq charsets (delq 'iso-2022-jp charsets))) (setq charsets (mm-delete-duplicates charsets)) - (if (and (> (length charsets) 1) - (fboundp 'find-coding-systems-region) - (let ((cs (find-coding-systems-region b e))) - (or (memq 'utf-8 cs) (memq 'mule-utf-8 cs)))) + (if (> (length charsets)) '(utf-8) charsets))) --=-=-= Makes it assume that if there's more than one charset, use UTF-8. XEmacs does not have find-coding-systems-region. And this is an ugly hack that works for me, not good enough to include somewhere else. -- Naked --=-=-=--