From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/57219 Path: main.gmane.org!not-for-mail From: Karl Chen Newsgroups: gmane.emacs.gnus.general Subject: Re: mm-decode.el bugfix patch for ido.el compatibility Date: Tue, 04 May 2004 13:21:31 -0700 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 1083702164 4596 80.91.224.253 (4 May 2004 20:22:44 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 4 May 2004 20:22:44 +0000 (UTC) Cc: ding@gnus.org Original-X-From: ding-owner+M5759@lists.math.uh.edu Tue May 04 22:22:30 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 1BL6Qu-0004qi-00 for ; Tue, 04 May 2004 22:22:29 +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 1BL6Q7-0003j1-00; Tue, 04 May 2004 15:21:39 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1BL6Q3-0003iw-00 for ding@lists.math.uh.edu; Tue, 04 May 2004 15:21:35 -0500 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by util2.math.uh.edu with esmtp (Exim 4.30) id 1BL6Q2-0008Iw-C6 for ding@lists.math.uh.edu; Tue, 04 May 2004 15:21:34 -0500 Original-Received: from hkn.eecs.berkeley.edu (hkn.EECS.Berkeley.EDU [128.32.47.228]) by justine.libertine.org (Postfix) with ESMTP id 86F973A01EF for ; Tue, 4 May 2004 15:21:33 -0500 (CDT) Original-Received: from quarl by hkn.eecs.berkeley.edu with local id 1BL6Q0-00086v-00 for ; Tue, 04 May 2004 13:21:32 -0700 Original-Received: by hkn.eecs.berkeley.edu (tmda-sendmail, from uid 606); Tue, 04 May 2004 13:21:32 -0700 (PDT) Original-To: Katsumi Yamaoka X-Quack-Archive: 1 In-Reply-To: (Katsumi Yamaoka's message of "Thu, 15 Apr 2004 08:11:46 +0900") User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3.50 (gnu/linux) X-Delivery-Agent: TMDA/1.0.2 (Bold Forbes) X-Primary-Address: quarl@quarl.org Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:57219 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:57219 I upgraded from 5.10.3 to 5.10.6 and it works fine now. Thanks :) >>>>> "Katsumi" == Katsumi Yamaoka writes: Katsumi> Katsumi> Hi, >>>>> In >>>>>> Karl Chen wrote: Katsumi> >> Dear Gnus/mm-decode.el maintainers: Katsumi> >> The patch below fixes an argument error in mm-save-part >> that prevents it from working correctly when ido-mode >> (ido.el) is enabled. Katsumi> Katsumi> `expand-file-name' has no longer been used since Oort Katsumi> Gnus v0.06 released in May, 2002. Katsumi> >> --- 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 @@ Katsumi> [...] >> (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)))) Katsumi> Katsumi> Here's the latest form: Katsumi> Katsumi> (setq file Katsumi> (mm-with-multibyte Katsumi> (read-file-name "Save MIME part to: " Katsumi> (or mm-default-directory Katsumi> default-directory) nil nil (or Katsumi> filename name "")))) Katsumi> Katsumi> Does it solve your problem? Katsumi> Katsumi> Regards, -- Katsumi Yamaoka Katsumi> -- Karl 2004-05-04 13:20