Gnus development mailing list
 help / color / mirror / Atom feed
From: Katsumi Yamaoka <yamaoka@jpl.org>
Cc: ding@gnus.org
Subject: Re: mm-decode.el bugfix patch for ido.el compatibility
Date: Thu, 15 Apr 2004 08:11:46 +0900	[thread overview]
Message-ID: <b9y65c2p32l.fsf@jpl.org> (raw)
In-Reply-To: <quack.20040414T1419.j5oepu8dgu@hkn.eecs.berkeley.edu>

Hi,

>>>>> In <quack.20040414T1419.j5oepu8dgu@hkn.eecs.berkeley.edu>
>>>>>	Karl Chen <quarl@hkn.eecs.berkeley.edu> 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 <yamaoka@jpl.org>



  reply	other threads:[~2004-04-14 23:11 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-04-14 21:19 Karl Chen
2004-04-14 23:11 ` Katsumi Yamaoka [this message]
2004-05-04 20:21   ` Karl Chen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b9y65c2p32l.fsf@jpl.org \
    --to=yamaoka@jpl.org \
    --cc=ding@gnus.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).