From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/57022 Path: main.gmane.org!not-for-mail From: Karl Chen Newsgroups: gmane.emacs.gnus.general Subject: mm-decode.el bugfix patch for ido.el compatibility Date: 14 Apr 2004 14:19:13 -0700 Sender: ding-owner@lists.math.uh.edu Message-ID: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1081977789 22854 80.91.224.253 (14 Apr 2004 21:23:09 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Wed, 14 Apr 2004 21:23:09 +0000 (UTC) Original-X-From: ding-owner+M5562@lists.math.uh.edu Wed Apr 14 23:23:01 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 1BDrqX-0001ic-00 for ; Wed, 14 Apr 2004 23:23:01 +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 1BDrpz-0006tW-00; Wed, 14 Apr 2004 16:22:27 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1BDrmw-0006sP-00 for ding@lists.math.uh.edu; Wed, 14 Apr 2004 16:19:18 -0500 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by util2.math.uh.edu with esmtp (Exim 4.30) id 1BDrmv-00005L-0z for ding@lists.math.uh.edu; Wed, 14 Apr 2004 16:19:17 -0500 Original-Received: from hkn.eecs.berkeley.edu (hkn.EECS.Berkeley.EDU [128.32.47.228]) by justine.libertine.org (Postfix) with ESMTP id 493F13A0027; Wed, 14 Apr 2004 16:19:16 -0500 (CDT) Original-Received: from quarl by hkn.eecs.berkeley.edu with local id 1BDrmr-0000yb-00; Wed, 14 Apr 2004 14:19:13 -0700 Original-To: larsi@gnus.org, morioka@jaist.ac.jp, ding@gnus.org X-Quack-Archive: 1 Original-Lines: 31 Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:57022 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:57022 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. --- 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 @@ (when filename (setq filename (file-name-nondirectory filename))) (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)))) (setq mm-default-directory (file-name-directory file)) (when (or (not (file-exists-p file)) (yes-or-no-p (format "File %s already exists; overwrite? " -- Karl 2004-04-14 14:14