From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/58005 Path: main.gmane.org!not-for-mail From: prj@po.cwru.edu (Paul Jarc) Newsgroups: gmane.emacs.gnus.general Subject: Re: Bug in nnmaildir? Date: Tue, 29 Jun 2004 17:16:47 -0400 Organization: What did you have in mind? A short, blunt, human pyramid? Sender: ding-owner@lists.math.uh.edu Message-ID: References: <20040529065248.GB804@ipanel.cn> <87hdsyqdsx.fsf@seamus.arnested.dk> <873c4ihx7m.fsf@seamus.arnested.dk> <87n02m16up.fsf@seamus.arnested.dk> <87isda144z.fsf@seamus.arnested.dk> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1088543856 23213 80.91.224.253 (29 Jun 2004 21:17:36 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 29 Jun 2004 21:17:36 +0000 (UTC) Cc: ding@gnus.org Original-X-From: ding-owner+M6546@lists.math.uh.edu Tue Jun 29 23:17:24 2004 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BfPym-0000xK-00 for ; Tue, 29 Jun 2004 23:17:24 +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 1BfPyN-0005DS-00; Tue, 29 Jun 2004 16:16:59 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1BfPyG-0005DM-00 for ding@lists.math.uh.edu; Tue, 29 Jun 2004 16:16:52 -0500 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by util2.math.uh.edu with esmtp (Exim 4.30) id 1BfPyF-00075e-Oz for ding@lists.math.uh.edu; Tue, 29 Jun 2004 16:16:51 -0500 Original-Received: from mirapoint1.tis.cwru.edu (mirapoint1.TIS.CWRU.Edu [129.22.104.46]) by justine.libertine.org (Postfix) with ESMTP id DD8483A003A for ; Tue, 29 Jun 2004 16:16:49 -0500 (CDT) Original-Received: from multivac.cwru.edu (multivac.ITS.CWRU.Edu [129.22.114.26]) by mirapoint1.tis.cwru.edu (MOS 3.4.3-CR) with SMTP id BWG13846; Tue, 29 Jun 2004 17:16:48 -0400 (EDT) Original-Received: (qmail 29444 invoked by uid 500); 29 Jun 2004 21:17:10 -0000 Original-To: =?iso-8859-1?Q?Arne_J=F8rgensen?= In-Reply-To: <87isda144z.fsf@seamus.arnested.dk> (Arne =?iso-8859-1?Q?J=F8rgensen's?= message of "Tue, 29 Jun 2004 22:49:16 +0200") Mail-Copies-To: nobody Mail-Followup-To: =?iso-8859-1?Q?Arne_J=F8rgensen?= , ding@gnus.org Original-Lines: 22 User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3 (gnu/linux) Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:58005 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:58005 Arne J=F8rgensen wrote: > How about setting the locale to en_US with the system-messages-locale > variable when running the function? Ok, see if this works for you: diff -u -r7.4 nnmaildir.el --- lisp/nnmaildir.el 20 May 2004 08:02:40 -0000 7.4 +++ lisp/nnmaildir.el 29 Jun 2004 21:15:22 -0000 @@ -1541,7 +1541,8 @@ permarkfile (concat mdir ":") mfile (concat mdir (nnmaildir--art-prefix article))) (condition-case err - (add-name-to-file permarkfile mfile) + (let ((system-messages-locale "en_US")) + (add-name-to-file permarkfile mfile)) (error (cond ((nnmaildir--eexist-p err)) paul