From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/57023 Path: main.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: mm-decode.el bugfix patch for ido.el compatibility Date: Thu, 15 Apr 2004 08:11:46 +0900 Organization: Emacsen advocacy group Sender: ding-owner@lists.math.uh.edu Message-ID: References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1081984377 6686 80.91.224.253 (14 Apr 2004 23:12:57 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 14 Apr 2004 23:12:57 +0000 (UTC) Cc: ding@gnus.org Original-X-From: ding-owner+M5563@lists.math.uh.edu Thu Apr 15 01:12:48 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 1BDtYl-0000RM-00 for ; Thu, 15 Apr 2004 01:12:48 +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 1BDtY9-00072C-00; Wed, 14 Apr 2004 18:12:09 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1BDtY0-000724-00 for ding@lists.math.uh.edu; Wed, 14 Apr 2004 18:12:00 -0500 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by util2.math.uh.edu with esmtp (Exim 4.30) id 1BDtXz-0001az-Q9 for ding@lists.math.uh.edu; Wed, 14 Apr 2004 18:11:59 -0500 Original-Received: from washington.hostforweb.net (washington.hostforweb.net [69.61.11.2]) by justine.libertine.org (Postfix) with ESMTP id E9E903A0067 for ; Wed, 14 Apr 2004 18:11:58 -0500 (CDT) Original-Received: from yamaoka by washington.hostforweb.net with local (Exim 4.24) id 1BDtY1-0003yX-NR; Wed, 14 Apr 2004 19:12:02 -0400 Original-To: Karl Chen 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.110002 (No Gnus v0.2) Emacs/21.3.50 (gnu/linux) Cancel-Lock: sha1:8yj8vd2oOSP5K4b+oV7vRabbKSU= X-Hashcash: 0:040414:quarl@hkn.eecs.berkeley.edu:8a0c81317d2a57dc X-Hashcash: 0:040414:ding@gnus.org:1fdb135a3c632333 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - washington.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [32041 32041] / [47 12] X-AntiAbuse: Sender Address Domain - washington.hostforweb.net Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:57023 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:57023 Hi, >>>>> In >>>>> Karl Chen wrote: > Dear Gnus/mm-decode.el maintainers: > The patch below fixes an argument error in mm-save-part that > prevents it from working correctly when ido-mode (ido.el) is > enabled. `expand-file-name' has no longer been used since Oort Gnus v0.06 released in May, 2002. > --- mm-decode.el 01 Sep 2003 08:45:24 -0700 1.14 > +++ mm-decode.el 14 Apr 2004 14:14:19 -0700 > @@ -686,10 +686,12 @@ [...] > (setq file > - (read-file-name "Save MIME part to: " > - (expand-file-name > - (or filename name "") > - (or mm-default-directory default-directory)))) > + (expand-file-name > + (read-file-name "Save MIME part to: " > + (or mm-default-directory default-directory) > + nil > + nil > + (or filename name)))) Here's the latest form: (setq file (mm-with-multibyte (read-file-name "Save MIME part to: " (or mm-default-directory default-directory) nil nil (or filename name "")))) Does it solve your problem? Regards, -- Katsumi Yamaoka